내부전쟁 패치 이후, GetSpellCooldown을 비롯한 여러 API 함수들의 이름이 변경되면서 기존의 매크로들이 작동하지 않게 되었습니다. (출처: https://www.reddit.com/r/wowaddons/comments/1d9frzl/list_of_api_changes_with_the_war_within/)

스킬의 남은 쿨타임을 외치는 매크로가 작동하지 않을 때는, 아래와 같이 수정된 매크로를 사용하시면 됩니다

#showtooltip 흡혈의 선물
/script local c=C_Spell.GetSpellCooldown("흡혈의 선물"); if c and c.duration > 0 then SendChatMessage("흡선 "..ceil(c.startTime+c.duration-GetTime()).."초 남음","YELL") end
/시전 흡혈의 선물

외생기의 경우에는:

/script local c=C_Spell.GetSpellCooldown("수호 영혼"); if c and c.duration > 0 then SendChatMessage("수호 "..ceil(c.startTime+c.duration-GetTime()).."초 남음","YELL") else SendChatMessage(UnitName("target").."에게 수호 사용!","YELL") end;
/시전 수호 영혼