|
ToyMage Apprentice
Joined: 01 Sep 2005 Posts: 120
|
Posted: Fri Jul 19, 2019 2:36 pm
TickTimer |
is it possible to do a #IF with tick timer?
#IF (TickerTimerLeft<20) {cast spell} |
|
|
|
shalimar GURU
Joined: 04 Aug 2002 Posts: 4691 Location: Pensacola, FL, USA
|
Posted: Fri Jul 19, 2019 7:52 pm |
Yes and no.
#T?
Will return:
Tick in 52 secs
So you can do a trigger off of that output message:
#TR {Tick in (%d) secs} {#IF (%1<20) {cast spell}}
Alternatively, just set the command into the timer itself:
#Timer 1 {cast spell} 0 20
That will autocast every tick. Use #TSET to set the timer interval. |
|
_________________ Discord: Shalimarwildcat |
|
|
|
ToyMage Apprentice
Joined: 01 Sep 2005 Posts: 120
|
Posted: Mon Jul 22, 2019 9:14 pm |
thanks thanks
|
|
|
|
|
|