simple hide with cooldown timer, easy to splice into other kinds of macros

baddie

Master
we 2019 gaming up in here

Code:
//hide with cooldown timer
//by baddie
if timerexists 'hidetimer'
if timer 'hidetimer' > 0
if timer 'hidetimer' > 1000
if timer 'hidetimer' > 2000
if timer 'hidetimer' > 3000
if timer 'hidetimer' > 4000
if timer 'hidetimer' > 5000
if timer 'hidetimer' > 6000
if timer 'hidetimer' > 7000
if timer 'hidetimer' > 8000
if timer 'hidetimer' > 9000
if timer 'hidetimer' > 10000
useskill 'hiding'
settimer 'hidetimer' 0
else
useskill 'hiding'
headmsg '*- 1 sec cooldown-*' 33
endif
else
useskill 'hiding'
headmsg '*- 2 sec cooldown-*' 33
endif
else
useskill 'hiding'
headmsg '*- 3 sec cooldown-*' 33
endif
else
useskill 'hiding'
headmsg '*- 4 sec cooldown-*' 33
endif
else
useskill 'hiding'
headmsg '*- 5 sec cooldown-*' 33
endif
else
useskill 'hiding'
headmsg '*- 6 sec cooldown-*' 33
endif
else
useskill 'hiding'
headmsg '*- 7 sec cooldown-*' 33
endif
else
useskill 'hiding'
headmsg '*- 8 sec cooldown-*' 33
endif
else
useskill 'hiding'
headmsg '*- 9 sec cooldown-*' 33
endif
else
useskill 'hiding'
headmsg '*- 9+ sec cooldown-*' 33
endif
else
useskill 'hiding'
headmsg '*- 9+ sec cooldown-*' 33
endif
else
useskill 'hiding'
settimer 'hidetimer' 0
endif
 
Last edited:
Top