Home - accidentallyc/soa-maestro-issues GitHub Wiki

Soa Maestro

Soa Maestro is a mod you can use to orchestrate commands together through events. It can be summed up as an event driven red stone or command block system.

Examples

Giving players immunity for 10 seconds when they revive

/maestro trigger on PlayerRevive "effect give @s resistance 10 255"

Reward players who kill with creepers with wooden swords

/maestro trigger on EntityKill "give @s diamond 1" {src:{mainHand:{id:wooden_sword}}}

Activate an iron door for a few seconds when right clicking the "hidden" block

/maestro trigger on BlockRightClick "maestro redstone tick 10s {at:[255,64,12]}" {tgt:{id:dirt}}