1. #1
    Deleted

    WeakAuras Request: Hunter Pet Specialisation Tracking

    Hey guys,

    I recently looted the BM hunter legendary ring and with it comes an unfortunate bug. Whenever you relog, your current pet specialisation gets returned to default, which is "Cunning". Now I'd like to have a WeakAura that flashes my whole goddamn screen or shows some insulting text that makes me remember to change that.

    I googled a lot but didn't find anything that works, but I'm certain there is some custom code necessary.

    Thanks in advance and have a good day.

  2. #2
    Quote Originally Posted by Nexell View Post
    I googled a lot but didn't find anything that works, but I'm certain there is some custom code necessary.
    Quick search found this function: GetSpecialization( [ isInspect [, isPet] [, specGroup] ] )

    You can use this trigger to check if your pet is using the first specialization.. Just make a Icon that covers a huge area.

    Code:
    function()
        if GetSpecialization(nil, true) == 1 then
            return true
        end
    end

    and of cause this untrigger

    Code:
    function()
        return true
    end
    "Everything always changes. The best plan lasts until the first arrow leaves the bow." - Matrim Cauthon

  3. #3
    Deleted
    That's what I found too, but I just can't seem to get it work

    I copy pasted that in the custom trigger, but nothing happens. I dont know if I'm doing anything wrong though.

  4. #4
    Custom trigger with update on every frame. That is kinda over the top, but not sure how you can make it proc from a login event.
    "Everything always changes. The best plan lasts until the first arrow leaves the bow." - Matrim Cauthon

  5. #5
    Deleted
    This should do what you want: https://wago.io/N161Wd0jz

    It will check whenever you login/reload etc. It will also check whenever you summon a new pet.

    Notice anything broken/buggy then let me know

Posting Permissions

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