1. #1
    Deleted

    Q: Custom simple weak aura - Talent selected

    Hello everybody,

    Q: I need a weak aura with a double talent trigger, which will only show up when both talents are selected (for example talent 1,1 and talent 2,1).
    I was trying to craft a custom trigger weak aura which checks if both talents are selected but i couldnt get it to work.
    Could anybody steer me in the right direction with an example?

    Thanks a lot, happy gaming!

  2. #2
    Can't you just make a trigger that is always active, and then use load conditions? There is a option for talent selected, and you can choose multiple talents if you want to.
    "Everything always changes. The best plan lasts until the first arrow leaves the bow." - Matrim Cauthon

  3. #3
    Deleted
    Quote Originally Posted by Quibble View Post
    Can't you just make a trigger that is always active, and then use load conditions? There is a option for talent selected, and you can choose multiple talents if you want to.
    Thats the thing, the multi target support feature under load tab, is not triggered specifically by the combination of 2 talents. It will load in any of the talents selected in the multi talent load feature
    Thats why i need a specific talent1 AND talent2 combination which will enable the weak aura

  4. #4
    Quote Originally Posted by QuickRespons View Post
    Thats the thing, the multi target support feature under load tab, is not triggered specifically by the combination of 2 talents. It will load in any of the talents selected in the multi talent load feature
    Thats why i need a specific talent1 AND talent2 combination which will enable the weak aura
    Code:
    function()
        local talent1 = select(4, GetTalentInfo(1,1,1)) -- Change numbers to match what you  want (tier, column, spec)
        local talent2 = select(4, GetTalentInfo(2,1,1)) -- Change numbers to match what you  want (tier, column, spec)
        
        if talent1 and talent2 then
            return true
            
        end
    end
    
    
    -- spec is whatever number it is in the specialisation window e.g Holy for Paladin is 1, Prot is 2 and Ret is 3

    That works

  5. #5
    Deleted
    Quote Originally Posted by Rehok View Post
    Code:
    function()
        local talent1 = select(4, GetTalentInfo(1,1,1)) -- Change numbers to match what you  want (tier, column, spec)
        local talent2 = select(4, GetTalentInfo(2,1,1)) -- Change numbers to match what you  want (tier, column, spec)
        
        if talent1 and talent2 then
            return true
            
        end
    end
    
    
    -- spec is whatever number it is in the specialisation window e.g Holy for Paladin is 1, Prot is 2 and Ret is 3

    That works
    This was exactly what i was looking for! thanks a lot much appriciated Rehok

Posting Permissions

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