Bug Fixes:
New Features:
- Added changeable velocity to the "command" section of custom abilities, what you can do with it will be explained in "Additional Information"
- ^ For above, types are [setVelocity, addVelocity, setLookVelocity, addLookVelocity]
- Added 2 new functions to the scripting engine functions, get race level and get class level
Configuration Changes:
Additional Information:
Note that entities are players as well
- Velocity Commands in Custom Ability, this is explained more in the wiki:
- setVelocity: Sets the entity's velocity to a specific value. Useful for creating abilities that move entities at a consistent speed or direction.
- addVelocity: Adds to the current velocity of the entity. Ideal for abilities that incrementally increase speed or change direction over time.
- setLookVelocity: Sets the entity's velocity in the direction they are looking. This can create abilities that propel the entity forward based on where they are facing.
- addLookVelocity: Adds velocity in the direction the entity is looking, on top of their current motion. This allows for more dynamic and responsive movements.