1. #1

    Question WA trigger edit help please

    Any kind soul out there that could edit Weakaura trigger for me? Usually i am able to edit my own weakauras but this one is kinda advanced.

    function(t)
    -- [1]=Rime, [2]=FFever <2, [3]FFever NA, [4] GCD
    -- [5] = Icy Talons FS?, [6] - Obliteration active

    local reg = WeakAuras.regions[aura_env.id].region
    local icy_talons = select(4, GetTalentInfo(1,2,1))
    local obliteration = select(4, GetTalentInfo(7,1,1))
    local scythe = select(4, GetTalentInfo(6,1,1))

    if icy_talons and t[5] then
    WeakAuras.ScanEvents("hblast_glows",false)
    ActionButton_HideOverlayGlow(reg)
    return false, t[4]
    end

    if ( t[2] or t[3] )
    or ( t[1] and obliteration and t[6] )
    or ( t[1] and ( not obliteration ) and scythe and t[7] )
    or ( t[1] and ( not obliteration ) and ( not scythe ) )
    then
    WeakAuras.ScanEvents("hblast_glows",true)
    ActionButton_ShowOverlayGlow(reg)
    return true, t[4]

    else
    WeakAuras.ScanEvents("hblast_glows",false)
    ActionButton_HideOverlayGlow(reg)
    end
    end

    All i need is to remove the [3]FFever NA trigger but the rest to still work?

  2. #2
    Change

    if ( t[2] or t[3] )

    to

    if ( t[2] )
    Originally Posted by Zarhym (Blue Tracker)
    this thread is a waste of internet

  3. #3
    Quote Originally Posted by Kanegasi View Post
    Change

    if ( t[2] or t[3] )

    to

    if ( t[2] )
    Oh my god. Thank you so much. This has been annoying me for months. <33

Posting Permissions

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