This is an extreme annoyance when i have one "forever" and another one running. Especially when they are switch costume blocks. Perhaps:
[blocks]Interrupt Forever ___ for ___ seconds[/blocks]
Offline
Make a variable called "pauseVar", then:
forever | costume script here | if <pauseVar = 1> | | wait until <pauseVar = 0> |
Then have the other script set pauseVar to 1 when you want the forever loop to pause.
Offline
SmartIrishKid wrote:
Make a variable called "pauseVar", then:
Code:
forever | costume script here | if <pauseVar = 1> | | wait until <pauseVar = 0> |Then have the other script set pauseVar to 1 when you want the forever loop to pause.
The same thing can be done with a few less blocks with this:
[blocks]
<forever if><( <{ pauseVar }> <=> 0 )>
do your costume stuff here...
<end>
[/blocks]
Offline
Thanks!
Offline
Offline