Skip to main content
Essential commands for managing player state and basic server functions.

⚙️ Configuration

heal_action

Restores health points.
amount
Double
default:"20.0"
Hearts to restore.
feed
Boolean
default:"true"
Also fill hunger?
clearEffects
Boolean
default:"true"
Remove potions?

damage_action

Deals raw damage.
amount
Double
Damage to deal.
bypassArmor
Boolean
default:"false"
True damage?

heal_all_action

Heals everyone on the server.
amount
Double
default:"20.0"
Amount to heal.

suicide_action

Instantly kills the player.

repair_action

Repairs held item.
amount
Int
default:"-1"
-1 for full repair.

durability_action

Modify item durability.
amount
Int
Negative values damage the item.

condense_ores_action

Auto-crafts Ingots -> Blocks in inventory.

gamemode_action

gamemode
Enum
SURVIVAL, CREATIVE, ADVENTURE, SPECTATOR.

flight_action

enable
Boolean
Toggle flight.

god_action

enable
Boolean
Toggle invincibility.

top_action

Teleports player to the highest solid block at their coordinates.

💻 Example Usage

heal_action:
  amount: 20.0
  feed: true
  clearEffects: true