Game Maker

Standing on Block Condition

Check the material of the block a player is standing on.

The Standing on Block Condition checks if the block directly beneath a player's feet is of a specific material.

Configuration

  • Block Type: The material you want to check for (e.g., GOLD_BLOCK, DIAMOND_BLOCK).

Use Cases

  • Creating jump pads that only activate when standing on a slime block.
  • A trap that triggers when a player steps on a cracked stone brick.
  • Safe zones that are marked with a specific color of wool.

Example: A Launch Pad

You want to launch a player into the air when they step on a slime block.

  1. Event: A Player Enter Region event that covers the area with the launch pads.
  2. Action: Conditional action.
  3. Configuration:
    • Condition: Standing on Block Condition
      • Block Type: SLIME_BLOCK
    • If Actions:
      • A Velocity action to apply a strong upward velocity to the player.