-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started
DarkBladeDev edited this page Dec 27, 2025
·
1 revision
- Server: Spigot/Paper 1.20.4 or higher (1.21+ recommended).
- Java: Java 21.
- Optional: PlaceholderAPI (for variable support in messages).
- Download the latest
MultiBlockEngine.jar. - Place it in your server's
pluginsfolder. - Restart the server.
- A default example
example_portal.ymlwill be generated inplugins/MultiBlockEngine/multiblocks/.
Create a new file simple_tower.yml in the multiblocks folder:
id: simple_tower
version: "1.0"
display_name: "&eSimple Tower"
controller: DIAMOND_BLOCK
pattern:
- offset: [0, -1, 0]
match: GOLD_BLOCK
- offset: [0, 1, 0]
match: EMERALD_BLOCK
actions:
on_interact:
- type: message
value: "&aYou touched the tower!"- Reload the plugin using
/mb reload. - Build the structure in-game:
- Gold Block (Bottom)
- Diamond Block (Center/Controller)
- Emerald Block (Top)
- Right-click the Diamond Block to test!