Originally Posted by
kartok
/target focus
/cast Misdirection
/targetlasttarget
that is completely pointless, and a waist of space.
just use this
Code:
/cast [target=focus]Misdirection
saves a lot of space if you wanna make a fancy macro like mine...
Code:
/script if UnitExists("focus") and UnitIsFriend("focus","player") then T=UnitName("focus") else T=UnitName("pet") end SendChatMessage("Misdirection on >> "..T.." <<","RAID_WARNING")
/cast [target=focus,exists,help][target=pet]Misdirection
what the /script does is checks if i have a focus and it friendly, it will set the variable to my focus's name. if no focus is found it will use my pets name. then it will broadcast that variable to raid warning.
the /cast will cast misdirection on my focus if it exists and is a friendly target. if not it will cast it on my pet