On my reverse glitch game ( i was bored) I made a script so that it clicks to unpause/pause. It can pause, but it can't unpause. Any help?
Offline
In all running scripts, do this,
when gf clicked forever all stuff in this script if <(pause) = [yes]> wait until <(pause) = [no]> endand then a script to change the variable.
Offline
sonicfan12p wrote:
In all running scripts, do this,
when gf clicked forever all stuff in this script if <(pause) = [yes]> wait until <(pause) = [no]> endand then a script to change the variable.
I'm talking about the script to change the variable.
Offline
Oh! Why didn't you say so! Then do this,
when [pause button] clicked set [pause v] to [yes] wait until <<touching [mouse-pointer v]?> and <mouse down?>> set [pause v] to [no]Here you go!
Last edited by sonicfan12p (2012-06-05 14:32:43)
Offline
Do this:
when gf clicked forever wait until <mouse down?> if <(paused?) = [true]> set [paused? v] to [false] else set [paused v] to [true] end wait until <not <mouse down?>> end
Last edited by SciTecCf (2012-06-05 14:33:22)
Offline