Home Commands Examples Getting Started With Scripts Global Keywords 1.21 Migration Guide
BracketDumpers BracketHandlers BracketValidators ResourceLocationBracketHandler

Abilities

Importing the class

If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.

script.zs
import crafttweaker.api.entity.type.player.Abilities;

Members

Getter
Gets the flying speed of the player.
script.zs
// Abilities.flyingSpeed as float
myAbilities.flyingSpeed

Return Type: float

Setter
Sets the flying speed of the player.
script.zs
// Abilities.flyingSpeed = (param0 as float);
myAbilities.flyingSpeed = myFloat;

Parameters:

param0 Type: float - The new flying speed of the player.
flyingSpeed() as float
Gets the flying speed of the player.

Returns: The flying speed of the player.

script.zs
// Abilities.flyingSpeed() as float;
myAbilities.flyingSpeed();

Return Type: float

flyingSpeed(param0 as float)
Sets the flying speed of the player.
script.zs
// Abilities.flyingSpeed(param0 as float);
myAbilities.flyingSpeed(myFloat);

Parameters:

param0 Type: float - The new flying speed of the player.
Getter
Gets the walking speed of the player.
script.zs
// Abilities.walkingSpeed as float
myAbilities.walkingSpeed

Return Type: float

Setter
Sets the walking speed of the player.
script.zs
// Abilities.walkingSpeed = (param0 as float);
myAbilities.walkingSpeed = myFloat;

Parameters:

param0 Type: float - The new walking speed of the player.
walkingSpeed() as float
Gets the walking speed of the player.

Returns: The walking speed of the player.

script.zs
// Abilities.walkingSpeed() as float;
myAbilities.walkingSpeed();

Return Type: float

walkingSpeed(param0 as float)
Sets the walking speed of the player.
script.zs
// Abilities.walkingSpeed(param0 as float);
myAbilities.walkingSpeed(myFloat);

Parameters:

param0 Type: float - The new walking speed of the player.