Skip to main content

Get 25% OFF on your first order with BisectHosting using code "DAQEM"!

Jump

The arc:on_jump action type is triggered when a player jumps.

Action Data

When this action is triggered, the following action data is made available:

Action Data TypeDescription
arc:block_positionSpecifies the coordinates (x, y, z) of a block in the world.
arc:worldRefers to the world/dimension where the action occurs.

Example

The following example gives the player a feather every time they jump.

data/my_datapack/arc/feather_jump.json
{
"holder": {
"type": "arc:player",
"id": "arc:player"
},
"type": "arc:on_jump",
"rewards": [
{
"type": "arc:item",
"item": { "id": "minecraft:feather" }
}
]
}

Compatible Condition Types

Compatible Reward Types