A Weakaura that don't require the addon DBM or Bigwigs to be able to recieve pull timers.
Tracks /pull and /break timers
This Aura is by default set to listen to DBM for Wrath of the Lichking Classic and Retail.
NOTE: Bigwigs always sends DBM Pull timers and Break timers as addon messages aswell, so you do not NEED to enable the bigwigs code down below, but IF you want to , it's there!
In the 'Actions' tab, in 'On Init' there is a custom code block.
you can replace the current text with the commented out text for different expansion versions.
Here is the code that you will use to replace in the custom code block to change game version:
(This code is commented out inside the WeakAura already, but incase you lose it here it is)
----------------------------------- FOR RETAIL REPLACE WITH THIS TEXT -----------------------------------
aura_env.duration = 0
local regPrefix_RETAIL = C_ChatInfo.IsAddonMessagePrefixRegistered("D5")
if regPrefix_RETAIL == false then
C_ChatInfo.RegisterAddonMessagePrefix("D5")
end
--------------------------------------------------- RETAIL ENDS HERE ---------------------------------------------------
----------------------------------- FOR WRATH REPLACE WITH THIS TEXT -----------------------------------
aura_env.duration = 0
local regPrefix_WRATH_CLASSIC = C_ChatInfo.IsAddonMessagePrefixRegistered("D5WC")
if regPrefix_WRATH_CLASSIC == false then
C_ChatInfo.RegisterAddonMessagePrefix("D5WC")
end
--------------------------------------------------- WRATH ENDS HERE ---------------------------------------------------
----------------------------------- FOR TBC REPLACE WITH THIS TEXT -----------------------------------
--------------------------------------------------- TBC ENDS HERE ---------------------------------------------------
aura_env.duration = 0
local regPrefix_TBC_CLASSIC = C_ChatInfo.IsAddonMessagePrefixRegistered("D5BC")
if regPrefix_TBC_CLASSIC == false then
C_ChatInfo.RegisterAddonMessagePrefix("D5BC")
end
---------------------------------- FOR CLASSIC REPLACE WITH THIS TEXT ----------------------------------
aura_env.duration = 0
local regPrefix_CLASSIC = C_ChatInfo.IsAddonMessagePrefixRegistered("D5C")
if regPrefix_CLASSIC == false then
C_ChatInfo.RegisterAddonMessagePrefix("D5C")
end
--------------------------------------------------- CLASSIC ENDS HERE ---------------------------------------------------
----------------------------------- FOR BIGWIGS REPLACE WITH THIS TEXT -----------------------------------
aura_env.duration = 0
local regPrefix_BIGWIGS = C_ChatInfo.IsAddonMessagePrefixRegistered("BigWigs")
if regPrefix_BIGWIGS == false then
C_ChatInfo.RegisterAddonMessagePrefix("BigWigs")
end
--------------------------------------------------- BIGWIGS ENDS HERE ---------------------------------------------------