How do you set the timer to 90 seconds and decrease from there until the whole thing stops at 0 seconds
Offline
bobbyjenks wrote:
How do you set the timer to 90 seconds and decrease from there until the whole thing stops at 0 seconds
you probably can't use the timer itself, but you could create a variable to do that.
[blocks]
<set{ time }to( 90)
<repeat until><( <{ time }> <=> 0 )>
<wait( 1 )secsc>
<change{time }by( -1)
[/blocks]
something like that
Offline
^^ Harakou speaks the truth.
In a way, the timer is quite pointless. It is easily recreated as a variable and that would add more possibilities.
Offline
lilacfuzz101 wrote:
bobbyjenks wrote:
How do you set the timer to 90 seconds and decrease from there until the whole thing stops at 0 seconds
you probably can't use the timer itself, but you could create a variable to do that.
[blocks]
<set{ time }to( 90)
<repeat until><( <{ time }> <=> 0 )>
<wait( 1 )secsc>
<change{time }by( -1)
[/blocks]
something like that
If you want a countdown use this.
Offline