|
Originally Posted by probiscus
This is most likely a really dumb question, but I'm horrible at coding macro's and such. What I'm looking to do is when I go to cannibalize I want my ItemRack to equip all my max stam items, then eat a corpse. I've got the macro so itemrack swaps my gear, but I can't get the spell (cannibalize) to act after the gear swap. Also, I doubt if it's possible, but I'd love the option to swap back to my previously equipped (damage) set after cannibalize is done. I'm not sure if cannibalize is one of those things where you can't swap gearsets in the middle of the channel, or if you CAN the value of your cannibalize ticks would drop (I don't want that).
In any case, any advice would be appreciated.
|
A druid in my guild wanted to do a similar thing with Thorns: Equip enough pieces of Cenarion to get a set bonus that affected the spell, cast it, then switch back, and I wrote a macro that did it for him. It went something like this:
/script local MySet=ItemRack_GetEquippedSet(); ItemRack_EquipSet("Thorns Set");
/cast Thorns
/script ItemRack_EquipSet(MySet);
Two caveats:
1) You're probably right about re-equipping your previous set, either it'll reduce your ticks or just not work during the channel. If that's the case just delete the last line of the macro.
2) I typed this from memory because my guild forums were recently changed around and old posts were lost. The spelling of the ItemRack functions might differ from what I wrote, if you get errors you'll have to find the right functions in the ItemRack source code.