clarity macro?

lostsk8r

New member
Joined
Jul 25, 2006
Messages
97
Reaction score
0
Points
0
So I main my enchanter, hes my main window in isboxer, I dont bot him etc. What's really tedious is boxing 3 groups and having to single target clarity each (TLP server FTL).

Anyone have a macro that I could use to clarity my whole raid, or specific named?
 
Here is a little macro I have had forever.

Code:
/mac BuffMac "Clarity" 85
or
/mac BuffMac "Spirit of Wolf" 85
Code:
#turbo 10

Sub Main(string Buff, int Del)
	/declare SpellName string outer
	/declare Delay int outer
	/varset SpellName ${Buff}
	/varset Delay ${Del}

	/echo Buffing: ${SpellName} with Delay: ${Del}

        /call CastBuff ToonName1
        /call CastBuff ToonName2
        ....
        /call CastBuff ToonNameN
/return

Sub CastBuff(string Name)
	/if (${SpawnCount[pc ${Name}]} > 0) {
		/target pc ${Name}
		/delay 10

		/if (!${Target.Buff[${SpellName}].ID}) {
			/cast "${SpellName}"
			/delay ${Delay}
		}
	}
/return