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
This post has been closed. You can still view previous posts, but you can't post any new replies.

Action Delay?

Is there a way to have a macro wait? For example I would like to use the following to make a target explode then burn for 5 seconds. /fx explode {@target} /wait 1 seconds /fx burn /wait 1 seconds /fx burn /wait 1 seconds /fx burn /wait 1 seconds /fx burn /wait 1 seconds /fx burn
1388470445
Lithl
Pro
Sheet Author
API Scripter
No. You would need to use an API script. setTimeout(function, time) will let you delay the execution of function by time (in milliseconds).