It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.

ZenScript
Copy
import crafttweaker.api.entity.type.player.Abilities;

Name: getFlyingSpeed

Return Type: float

ZenScript
Copy
// Abilities.getFlyingSpeed() as float

myAbilities.getFlyingSpeed();

Name: getWalkingSpeed

Return Type: float

ZenScript
Copy
// Abilities.getWalkingSpeed() as float

myAbilities.getWalkingSpeed();

Name: setFlyingSpeed

Return Type: void

ZenScript
Copy
Abilities.setFlyingSpeed(param0 as float) as void
参数类型描述
参数
param0
类型
float
描述
No Description Provided

Name: setWalkingSpeed

Return Type: void

ZenScript
Copy
Abilities.setWalkingSpeed(param0 as float) as void
参数类型描述
参数
param0
类型
float
描述
No Description Provided
名称类型可获得可设置描述
名称
flyingSpeed
类型
float
可获得
true
可设置
true
描述
No Description Provided
名称
walkingSpeed
类型
float
可获得
true
可设置
true
描述
No Description Provided