# Drops 2 sticks on 0 to 20 unit donation
WITH amount IN RANGE [0,20]
EITHER # Selects one random action
# Either drops a diamond block
# Or drops an iron block named "Iron Golem Body"
DROP %iron_block{display:{Name:"\"Iron Golem Body\""}}% 2
# Or summons a zombie on given coordinate
SUMMON minecraft:zombie ~ ~+10 ~
# By displaying one common message for any action selected!
ALL DISPLAYING %["Get ready for spoils of battle!"]%
WITH amount IN RANGE [21, 999]
# Executes a Minecraft command as the streamer being the source!
EXECUTE %/gamerule keepInventory true%
{text:"${actor}", color:"red"},
{text:" turned immortality on!", color:"white"},
# Instantly does two actions! Throws leggings and boots from the inventory!
THROW leggings AND THROW boots
DISPLAYING %["You forgot to wear your pants!"]%
# Drops a stick with NBT data, when a Twitch Follow is received!
DROP %minecraft:stick{display:{Name:"\"Stick of Truth!\""}}% 1