Code: Select all
|** conjur.mac
Special thanks to all the VIP's who helped me make this script a success.
Puts summon: food or drink in first slot, chain casts that spell, destroying
any food that is successfully conjured, and auto meds when OOM.
Target something to end macro.**|
#event SpellFizzle "Your spell fizzles!"
#event OOM "You have insufficent mana"
Sub Main
/declare fizz int outer
/memspell 1 "Summon Food" |Change this part here as needed|
/target clear
:cast
/if (${Target.ID}) /goto :end
/varset fizz 0
/cast 1
/delay 1s
/doevents
/if (${fizz}) /goto :cast
/delay 6s
/if (${Cursor.Name.Equal[Summoned: Black Bread]}) /destroy
/goto :cast
:end
/endmacro
/return
|||If your spell fizzles, try, try again|||
Sub Event_SpellFizzle
/varset fizz 1
/if (${Target.ID}) /endmacro
/return
|||If you're OOM, then you should med, fucking nooblet|||
Sub Event_OOM
/sit
/delay 1m (${Me.PctMana} == 100)
/return


