Edit: Think I fixed it to include all canni timers, may have to adjust how long you pause after the cast of canni
Edit: Took out the second function, it was erenuous and just causes more problems for 6 lines of code. Also changed some small things and tweaked it a little better.
Code: Select all
|cani.mac: a simple cani macro
|usage: /mac cani [sit]
|By: holmedog
#include spell_routines.inc
sub main
/if (${Me.PctMana}>95) /return
/cast "Cannibalize IV"
/delay 4s
/sit
/delay 2s
/if (${Me.PctHPs}<45) {
/varset TempID ${Target.ID}
/keypress F1
/echo Casting Heal Spell because of low health...
/cast "Quiescence"
/delay 5s
/sit
/delay 25s
/target id ${TempID}
}
/call main
/return


