Auto Summon food and drink (food.mac)
Posted: Wed Jul 07, 2004 4:28 am
this macro will memorize your food summoning spells into gem 1 and 2, then proceed to summon food and drink until you have around 60 of each, then stops and ends =) change the numbers to your liking as well as the spell names for lower level characters etc
leave me some feedback =) i think i made it look all pretty in the code block =) =) =) hehe
Code: Select all
#include spellcast.inc
Sub Main
/memspell 1 "abundant drink"
/Delay 3s
/memspell 2 "abundant food"
/goto :loop
:loop
/if (${FindItemCount[water]}<59) {
/call cast "abundant drink"
}
/if (${Cursor.ID}) /autoinv
/if (${FindItemCount[bread]}<59) {
/call cast "abundant food"
}
/if (${Cursor.ID}) /autoinv
/if (${FindItemCount[bread]}>57 && ${FindItemCount[water]}>57) {
/endmacro
}
/goto :loop