1. #1
    The Lightbringer Azerox's Avatar
    15+ Year Old Account
    Join Date
    Mar 2009
    Location
    Groningen
    Posts
    3,803

    Weakaura disable resting area?

    Hi,

    I use Luxthos WA on almost all my chars but want it disabled when in resting area.

    Is it possible to make it do that?

    I know i can make it disable on non-combat but i only want it disabled in resting zones/sanctuary.

    Hope someone here can gimme a tip.

    Thanks!
    That is not dead which can eternal lie, and with strange Aeons even Death may die.

  2. #2
    Under triggers, add a new trigger as Player/Unit Info -> Conditions -> Check the "Resting" checkbox twice to make it a red "Not Resting."
    You'll also have to change the Required for Activation. If it's already at all triggers, you're fine, but if it was previously at any triggers, you'll have to write a custom function that checks the not resting trigger is active and then checks if any of the other remaining triggers are active.

    Triggers are stored in a list 1-indexed by the order they're in. If you have 4 triggers that currently activate on a "Any Triggers," and your No Resting trigger is #5, then the function would be along the lines of:
    Code:
    function(t)
      return t[5] and (t[1] or t[2] or t[3] or t[4])
    end

Posting Permissions

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