1. #1
    Deleted

    Pet specialization Weakaura

    Using the legendary ring and having pet as anything apart from the standard is bugged, and apparently has been since launch. I want my pet to be tenacity.
    Likely no update and myself being quite bad at remembering to check my pet spec constantly I decided to make a WA to do that for me.
    Made a custom trigger
    Code:
    function()
        if GetSpecialization(false,true) == 2  then
            return true
        end
    end
    and untrigger
    Code:
    function()
        return true
    end
    This works, but it works in reverse, as in the icon I chose shows when I am in the correct spec, and is gone when in the wrong one.
    My question is how do I invert this. Been trying for a few hours now, and it's doing my head in. Staring blankly at the screen. The display tab has invert greyed out.

  2. #2
    Code:
    GetSpecialization(false,true) ~= 2
    Originally Posted by Zarhym (Blue Tracker)
    this thread is a waste of internet

  3. #3
    Deleted
    Quote Originally Posted by Kanegasi View Post
    Code:
    GetSpecialization(false,true) ~= 2
    Yes perfect. Completely neglected negating my operator. Thank you for fixing it. Much love.

Posting Permissions

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