1. #1

    addon for proc tracking/RPing

    hello,

    i'm pretty sure this is answered somewhere, but i couldn't find it on the first 2 pages and the search function didn't help either.

    so i just got my hands on the heroic version of Nibelung and now i'm searching for an addon to track the val'kyr proc and combine with emotes or /say.
    i already tryed Segui and Speakinspell, but both are unable to track it.
    i also tried proculas, which won't track it either, but i think this is due to that i didn't configured it properly, as proculas is normally very reliable in tracking item procs. but even if, proculas can't let do RP stuff (at least, not that i know).

    so, aonyone got an idea what addon to use?
    the most useless invention in history? A Graveyard wall!
    no one on the inside is able to walk out and
    no one on the outside wants to get in willingly

  2. #2
    Deleted
    Code:
    local a = CreateFrame("Frame")
    a:RegisterEvent("COMBAT_LOG_EVENT_UNFILTERED")
    a:SetScript("OnEvent", function(self, event, ...)
        local args = {...}
        if (args[2] == "SPELL_AURA_APPLIED") and (args[6] == (UnitGUID("player"))) and (args[9] == 64411) then
            SendChatMessage("your text", "SAY") -- replace "SAY" with "EMOTE" for emotes
        end
    end)
    How to use.
    Untested.

  3. #3
    ThatJustHappened can do that as well. Also 64411 is the Val'anyr proc, Heroic Nibelung is 71844 if you want to track both with Tree's code snippet.

    Gershuun @ Borean Tundra US - Interface & Macros Moderator

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •