Code: Select all
|manastone.mac
|By pugs
|this crude little thing will cast your mount if your not on it cast the
|Girdle of Efficiency and the proceed to manastone yourself down to 10% hp
|then cast Chlorotrope and do it till oyu have full mana.
|it also counts the casts of the stone and will swap up your current bp for your fungi
| need to have stone in bottem right slot in invetory and you fungi in the bag above it.
| also you need to edit it what tunic you currently have.
#turbo 20
#include spell_routines.inc
Sub Main
/declare casts int outer
/call cast "Giant white drum" item
/if (${Bool[${Me.Buff["Maelin's Methodical Mind"]}]}==FALSE ) /call cast "Girdle of Efficiency" item
/keypress I
/delay 1s
/itemnotify pack7 rightmouseup
/delay 1s
/itemnotify chest leftmouseup
/delay 1s
/itemnotify ${FindItem[=Fungus Covered Scale Tunic].InvSlot} leftmouseup
/delay 1s
/itemnotify chest leftmouseup
/delay 1s
:main
/if (${Me.PctHPs} <= 10) /call cast "Chlorotrope"
/if (${Me.PctMana} >99) /goto :end
/itemnotify pack8 rightmouseup
/varset casts ${Math.Calc[${casts}+1]}
/delay 1s
/if (${Me.PctHPs} <= 5) /end
/goto :main
:end
/keypress F1
/call cast "Chlorotrope"
/itemnotify chest leftmouseup
/delay 1s
/itemnotify ${FindItem[=EDIT THIS].InvSlot} leftmouseup
| ex ${FindItem[=Bazu hide tunic].InvSlot}
/delay 1s
/itemnotify chest leftmouseup
/delay 1s
/echo you Casted your stone ${casts}
/echo Thanks you should be full mana now~~~
/keypress esc
/keypress esc
/end

