Posted on: 09-21-2013 - Updated on: 02-01-2014 - viewed 7151 times
Description:
This is a macro to call a kill order on a specific healer. It will announce the player’s name and gender to either instance chat, raid, party or say depending on conditions.
This macro is a definite benefit when you have a few dopes in PvP pounding on DPS as a healer stands back healing them with impunity. This is far too common a scenario in PvP.
This macro is tested and working in 5.4.0(17371)as of September 11, 2013
author:
/run local g,m=UnitSex("target") if g==2 then m="him" elseif g==3 then m="her" end if m then SendChatMessage("%t is a healer. Kill "..m.."!",IsInGroup(2) and "INSTANCE_CHAT" or IsInRaid() and "RAID" or IsInGroup(1) and "PARTY" or "SAY", nil) end