Add riochecker

This commit is contained in:
2024-06-05 17:14:35 +02:00
parent d75a9b65f2
commit 69278e7736
4 changed files with 125 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
-- CHAT_MSG_SYSTEM
function(e, msg)
-- if e == "OPTIONS" then
-- WeakAuras.ScanEvents("CHAT_MSG_SYSTEM", "- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ")
-- WeakAuras.ScanEvents("CHAT_MSG_SYSTEM", "-> Return to Karazhan: Lower / isDPS / +++5 / 8m29s / 59.1 ")
-- WeakAuras.ScanEvents("CHAT_MSG_SYSTEM", "-> Cathedral of Eternal Night / isDPS / +++2 / 9m41s / 23.4 ")
-- WeakAuras.ScanEvents("CHAT_MSG_SYSTEM", "-> Seat of the Triumvirate / isDPS / +++14 / 14m54s / 165.5 ")
-- WeakAuras.ScanEvents("CHAT_MSG_SYSTEM", "-> Return to Karazhan: Upper / isDPS / +++11 / 10m23s / 128.0 ")
-- WeakAuras.ScanEvents("CHAT_MSG_SYSTEM", "- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ")
-- end
if not msg then return end
if string.byte(msg, 1) + string.byte(msg, 6) == 77 then
aura_env.reading = not aura_env.reading
if aura_env.reading then
aura_env.fullMessage = {}
else
aura_env.Process()
end
return
end
if aura_env.reading then
aura_env.fullMessage[#aura_env.fullMessage + 1] = msg
end
end