fortmcas wrote:
I need a script that runs down a timer on the top of the screen. Can anyone help????
It is for my new game, Ocean Rescue
As in the timer? There's a built in timer in the sensing category. But make sure to include a
when gf clicked reset timerscript, the timer keeps going even after you click the stop sign.
Offline
If you want a timer to count down than use this:
when gf clicked reset timer forever set [Time Remaining v] to ((starting time)-(timer))And display the "time remaining" variable.
Offline
Create a timer variable and say
when i receive [start v] set [time left v] to (30) // or however much time you want forever // or "repeat until time left = 0" or whatever change [time left v] by (-1) wait (1) secondI'm not sure that it is possible that you can make the timer go backwards. But, if you want the 1/10 seconds and 1/100 seconds of the timer, do
set [time left] to (30.00) repeat until < [time left v] > (0) > change [time left v] by -0.01 wait (0.01) seconds
Offline