Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Macro to clear initiative order?

Is there a script that i could use to quickly clear initiative (turn order)? I know it's a minor macro but couldn't figure out how to do it.
1510271903

Edited 1510271992
The Aaron
Pro
API Scripter
GroupInitiative can do that for you with: !group-init --clear If you want just a simple one-off, this should work: on('ready',()=>{ on('chat:message',(msg)=>{ if('api'===msg.type && /!clear\b/i.test(msg.content) && playerIsGM(msg.playerid)){ Campaign().set('turnorder','[]'); } }); }); With the command: !clear
ty!
1510272051
The Aaron
Pro
API Scripter
No problem!  ( I made a few edits to the one-off and added the command, just in case you copied it before I revised it. =D)