1. #1

    WeakAura triggering unit in action

    Hello, I have a debuff weak aura, which I would like to autoclone in a dynamic group. However, for this I don't think I can use a custom trigger, and I need to save the name of the player who got the debuff. Is it possible to get the triggering unit in the on show action via some internal variable?

  2. #2
    Did you try %n?

    Spriest
    for Temerity // Twitter
    // Youtube // Btag: Myst#1540

  3. #3
    Deleted
    If you don't want to do anything else with the name, you can just use %n and it'll display the person that has the aura.
    If you need it in %c to do anything else with it:
    Code:
    function(...)
    local name = select(5, ...)
    end
    the 5th argument of the varargs should contain the name you want

Posting Permissions

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