promotional bannermobile promotional banner
premium banner
Simply adds dash jumping to game.

Description

Dash Jump adds a clean, lightweight double-jump ability to Hytale, giving players more freedom and fluid movement without changing the core gameplay. Jump again mid-air to clear gaps, reach higher platforms, and explore the world in a more dynamic way.

 

Enable / Disable with command /dashjump (Enabled by default) -- requires op /self

Bound to Ability 2.  (Set space bar to Ability2 in controls. Or any key you prefer).

Must have weapon equiped.

 

DashJump API (Modders)

Add the DashJump .jar as a dependency and import:
import com.mb.doublejump.api.DoubleJumpApi;

Enable / disable DashJump per player:
DoubleJumpApi.enable(commandBuffer, playerRef);
DoubleJumpApi.disable(commandBuffer, playerRef);
DoubleJumpApi.toggle(commandBuffer, playerRef);

Check state:
boolean enabled = DoubleJumpApi.isEnabled(store, playerRef);

DashJump is active when DoubleJumpComponent exists on the player.