1. #1
    Deleted

    Weak aura to load when you have a specific target?

    Hey, we are currently progressing on Iron Juggernaut heroic. As the raid leader, i'd like to make a text weak aura showing CD rotation.

    This part I have done fine, however I only want it to show for the Iron Juggernaut fight. Is there anyway to make it only load with a specific target targeted? Or a way to activate it for the fight, then disable it without fully deleting it?

    Thanks.

  2. #2
    Add a second trigger (make sure load all on top is selected). Custom, Status, Every Frame

    Trigger:

    function()
    if UnitName("boss1") == "Iron Juggernaut" then
    return true
    else
    return false
    end
    end

    Untrigger:

    function()
    return true
    end

  3. #3
    Deleted
    Could not have asked for a more perfect answer. Thank you VERY much.

  4. #4
    Deleted
    Doesn't boss1 get UNIT_NAME_UPDATE events? Not sure if checking on every frame is really worth it.

  5. #5
    Quote Originally Posted by Treeston View Post
    Doesn't boss1 get UNIT_NAME_UPDATE events? Not sure if checking on every frame is really worth it.
    most people probably have the CPU power to go with the easy solution

Posting Permissions

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