#Ashkandur Reminder for Specific Raid Bosses

1 messages · Page 1 of 1 (latest)

molten drum
#

lookin for help creating a WA that pops up a message when targeting humanoid raid bosses that tells me to equip Ashkandur

random goblet
#

hey @molten drum
https://wago.io/4Mk3AZKKf try this
in nutshell, i used 2 triggers.

trigger 1) i used 2 custom events,
event A) PLAYER_TARGET_CHANGED which fires everytime you change target or untarget anything. with custom function to check if target is elite with level -1 which is specific for raid bosses, and if target is humanoid

function (e,...)
    if e == "PLAYER_TARGET_CHANGED" then
        local u="target" 
        if UnitExists(u) and UnitCreatureType(u) == "Humanoid" and UnitClassification(u) == "elite" and UnitLevel(u) == -1 then
            return true
        end
    end
end

event B) PLAYER_EQUIPMENT_CHANGED for untrigger

function (e,...)
    if e == "PLAYER_EQUIPMENT_CHANGED" then
        return true
    end
end

trigger 2) to check if you dont have equiped ashkandur at all, i used Item, Item Equiped, ashkandur item ID, and select Inverse.
WA shows text if all triggers are met.
load condition: instance flex raid, instance 20man raid, player level 70. but you can change load conditions to suits you.

hope it helps

Wago.io is a database of sharable World of Warcraft addon elements

#

it does not check your bags if you posses ashkandur at all, so its only up to you if you have this wpn or not