WoWInterface SVN AbilitySayings

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /AbilitySayings
    from Rev 13 to Rev 14
    Reverse comparison

Rev 13 → Rev 14

AbilitySayings/DK.lua New file
0,0 → 1,19
if ( select(2, UnitClass("player")) == "DEATHKNIGHT" ) then
local f = CreateFrame("Frame")
local spellName = GetSpellInfo(49576) -- Death Grip
 
f:SetScript("OnEvent",
function(self, event, arg1, arg2)
if arg1 == "player" and strfind(arg2, spellName) then
if event == "UNIT_SPELLCAST_SENT" then
 
SendChatMessage("Get over here!", "YELL")
 
end
end
end
)
 
f:RegisterEvent("UNIT_SPELLCAST_SENT")
f:RegisterEvent("UNIT_SPELLCAST_SUCCEEDED")
end