Thread: Weak Aura

  1. #1

    Weak Aura

    Trying to make a weak aura for showing current ilvl,

    function()
    return GetAverageItemLevel("player")
    end

    Gives me my total ilvl, like what you would have seen in WoD, but I'm trying to get it to show equipped ilvl instead. So it doesn't factor in what's in my bags, anyone know how I would do this?

  2. #2
    Quote Originally Posted by Nokura View Post
    GetAverageItemLevel("player")
    That function returns 3 values. You need the second one, but you use the first one.
    Code:
    function()
        local _, ilvl = GetAverageItemLevel("player")
        return ilvl
    end
    This will work.

  3. #3
    Sure did! Thanks my friend

Posting Permissions

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