Event Maker is a event-authoring toolkit for modpacks and adventure maps. Build invisible trigger networks, bind them to command polls, and execute effects at the player or at dedicated world locations.
It is designed for both solo story maps and multiplayer servers where reusable room templates, locality, and predictable behavior are critical.
Main functions
- Event Trigger (cyan) — activates events when contacted.
- Event Location (orange) — defines execution points for location-based command origin.
- Dual-role Event Wand — switch Trigger/Location role with
Alt + Mouse Wheel. - Range-scoped instances — same IDs can be reused in nearby rooms without cross-triggering.
Authoring flow
- Place Event Trigger blocks, or inject trigger IDs onto normal blocks.
- Optionally place Event Location blocks (or injected locations) with the same ID.
- Create a poll in
data/<namespace>/command_poll/. - Create an event in
data/<namespace>/event_trigger/and reference that poll viacommands_poll. - Choose command origin behavior with
command_locationandcommand_location_range.
Wand controls
Shift + Right Click: set the current event ID on the wand.Alt + Mouse Wheel: toggle wand role (Trigger / Location).Right Click: apply the role's ID to marker block or inject onto arbitrary block.Left Click(creative, injected marker): remove injected marker for the active role.
Datapack fields
Each event variation supports:
commands_poll(required)activation:walk_through,touch,stepped_onpersistent: one-shot or repeatablecommand_location:freeorevent_locationcommand_location_range: local scope radius (default 32)
free: command source is the triggering player.
event_location: command poll executes once per matching location marker in range, with source positioned above each location block.
Why range matters
If you duplicate a room layout and reuse the same IDs, range keeps each activation local. One-shot consumption and trigger cleanup apply to the local instance only, instead of affecting distant copies.
Survival behavior
- Markers are invisible and untargetable in Survival (no crosshair highlight / Jade target info).
- Creative builders still get colored wireframe overlays for editing.

