lazymage.mac

A forum for you to dump all the macros you create, allowing users to use, modify, and comment on your work.

Moderator: MacroQuest Developers

ImaNoob
a ghoul
a ghoul
Posts: 89
Joined: Mon Mar 08, 2004 4:37 am

lazymage.mac

Post by ImaNoob » Thu Apr 08, 2004 5:42 am

I have alot of no rent crap that I need to summon when I first logon each day, this gets tiresome, I'ld rather pour myself some coffee, take a dump, or go hang myself.

Anyways this macro addresses this single most vital issue in the life of a mage. It may need a bit of tweaking, like most of these I have yet to test it, but I see no reason for NOT to work. So here goes...

Code: Select all

|lazymage.mac v1.0 by ImaNoob
|This macro will summon all that great no rent stuff us mages always need to summon when logging on
|Usage create a spell set and save it as summoning then just /macro lazymage

#turbo
#include spellcast.inc

Sub Main
	/zapvars
	/loadspells "summoning"
	/delay 1m
	/declare castcount

	|NOTE adjust this line if you have less than 8 items to summon
	/varset castcount 8

	/for (castcount 1 to 8 ){

		|I'm doing it this way to prevent fizzles
		/call Cast "$char(gem,@castcount)"
		/delay 2s
		/autoinv
	}
	/echo Ok lazy ass, your spells are all cast 
/return
*update*
Sorry for the dam smiley it was supposed to be 8 ) fixed now.