View Single Post
04-26-06, 01:15 AM   #46
Astos
An Aku'mai Servant
 
Astos's Avatar
Join Date: Feb 2006
Posts: 33
Originally Posted by Gello
Evocation

This macro/event pair will swap in your spirit gear when you begin casting Evocation and then swap it out when you're done.

1. Make this macro to cast Evocation:
/script EVOCING=1 SaveSet("Spirit Gear") EquipSet("Spirit Gear")
/cast Evocation

2. Make this event:

Event: Mage:Evocation
Trigger: SPELLCAST_STOP
Delay: 1
Script:
if EVOCING and not CastingBarFrame.channeling then EVOCING=nil LoadSet() end
--[[Unequips a set when done casting Evocation]]

3. Associate the set "Spirit Gear" to the event. (can name it anything you want, doesn't need to be "Spirit Gear")
I did this, and I have double checked everything, but it still only equips my spirit gear when I start Evocation--it doesn't swap it back out when I am done.

Any ideas? I made the macro just as it says, and kept the names the same. I even checked for leading spaces before the Trigger.

Also, I have tried the base Evocation setup included in Item Rack, and it does the same thing--equips for the start of Evocation, but does not unequip at the end.

Any help would be greatly appreciated.
  Reply With Quote