5000 onActivate > Self > setEventEnabled > 0 1 2 ☒
0 onActivate > Self > playSound...
0 onActivate > Self > setEventEnabled > 0 1 2 ☐
This will make the event disable itself after being clicked, but 5 seconds later the first event will enable it again.
was helping somebody else with this in a different topic
the issue with just doing this is it can break if the events are canceled (minigame leaving/disconnecting/saving while the events are running)
if you want it to be self correcting, I've put together this
0 OnActivate -> Self -> dostuff (play sound)
0 OnActivate -> Self -> setEventsEnabled 0 1 2 false
2000 onActivate -> Self -> setEventsEnabled 0 1 2 true
5000 onActivate -> self -> fireRelay
0 onRelay -> self -> setEventsEnabled 0 1 2 true
the 2000 is the normal delay (2 seconds, can be changed)
the 5000 is the self correcting reset (5 seconds, must be more than the normal delay)
since starting a relay cancels other relays, the reset can't be spammed and will always work even if the other events are disabled, but won't reset the event before the normal usage resets itself (the events won't flash on/off)