Back to "mager" tags

Eat Mushroom (with cooldown display) by Isc4riot

1# eat magery mushroom with cd display by Isc4riot
2# eat a mushroom when it is off cd and you have less than 75 mana to not waste it
3# can spam the button while meditating to show the cooldown without it breaking
4# using other scripts doesnt mess with the timer
5# if someone feels like fancying it up further go ahead
6
7if not timerexists 'mushroom'
8    createtimer 'mushroom'
9    settimer 'mushroom' 61000
10endif
11
12if timer 'mushroom' > 60000 and findtype '29012' backpack and mana < 75
13    dclicktype '29012'
14    wait 250
15    if insysmsg 'restore some mana'
16        settimer 'mushroom' 0
17        clearsysmsg 
18    endif
19
20else 
21    if timer 'mushroom' > 60000 and mana > 75
22        overhead 'Mushroom ready but mana not bellow 75 yet!'
23        else
24        overhead "Mushroom cooldown: {{mushroom}}"
25    endif
26endif