1. #1
    Deleted

    [WeakAura] Show me what gear from "Equipment manager" Im using?

    Yo,

    I wonder if there is a way to show me, by a icon or text, what gear I'm using from the built in function "Equipment manager" with the help from Weak Auras. Thanks!

  2. #2
    PLAYER_ENTERING_WORLD, PLAYER_EQUIPMENT_CHANGED

    Code:
    aura_env.SetName = nil
    for i = 1, GetNumEquipmentSets() do
        local name, _, _, isEquip = GetEquipmentSetInfo(i)
        if isEquip then
            aura_env.SetName = name
            return true
        end
    end

  3. #3
    Quote Originally Posted by ekardnah View Post
    Code:
    local name, _, _, isEquip = GetEquipmentSetInfo(i)
    The 2nd value GetEquipmentSetInfo() returns is actually a path to an icon. Which you then can use in a custom icon function if you want to see one.

  4. #4
    Deleted
    Wow okay thanks! But what do I do with this codes

  5. #5

Posting Permissions

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