Simple Item Levels
Show item levels on:
- The character panel
- The inspect panel
- Loot windows
- The equipment-picker flyout
- Weapons, armor, and artifact relics in bags (built in, bagnon, baggins, inventorian)
- Tooltips (in classic)
I'm open to adding them in more places.
Also shows:
- An upgrade arrow on items in your bags which you can use whose item level is higher than whatever you currently have equipped.
- A soulbound indicator, so you can see whether something is soulbound, bind-on-equip, or warbound-until-equipped
- Missing enchants and gems
Simple configuration
For a summary of settings:
/simpleilvl
To toggle a place to display item levels:
/simpleilvl [type]
…where type is bags, character, or inspect.
To disable the upgrade arrow:
/simpleilvl upgrades
To change whether the text is colored by item quality or just left white:
/simpleilvl color
-
View User Profile
-
Send Message
Posted Oct 23, 2022So this works for DragonFlight beta for the character panel, but settings doesnt work, and ilvl in bags dont work, these are the lua errors im getting. Any chance to get this to work?
Message: Interface/AddOns/SimpleItemLevel/addon.lua:184: hooksecurefunc(): ContainerFrame_Update is not a function
Time: Sun Oct 23 08:27:22 2022
Count: 1
Stack: Interface/AddOns/SimpleItemLevel/addon.lua:184: hooksecurefunc(): ContainerFrame_Update is not a function
[string "=[C]"]: in function `hooksecurefunc'
[string "@Interface/AddOns/SimpleItemLevel/addon.lua"]:184: in main chunk
Locals:
Message: Interface/AddOns/SimpleItemLevel/lib/LibAppropriateItems-1.0/LibAppropriateItems-1.0.lua:1 (null)
Time: Sun Oct 23 08:27:23 2022
Count: 1
Message: Interface/AddOns/SimpleItemLevel/addon.lua:1 (null)
Time: Sun Oct 23 08:27:23 2022
Count: 1
Message: Interface\FrameXML\Bindings.xml:1 Interface/AddOns/SimpleItemLevel/lib/LibAppropriateItems-1.0/LibAppropriateItems-1.0.lua:1 (null)
Time: Sun Oct 23 08:27:23 2022
Count: 1
Message: Interface\FrameXML\Bindings.xml:1 Interface/AddOns/SimpleItemLevel/addon.lua:1 (null)
Time: Sun Oct 23 08:27:23 2022
Count: 1
-
View User Profile
-
Send Message
Posted Oct 3, 2022not show equiped item ilevel in the compare frame
-
View User Profile
-
Send Message
Posted Sep 26, 2022Hello,
Is is possible to add the itemlevel on the "currently equipped" tooltip? Attaching a screenshot for clarity.
https://ibb.co/28hvNhL
-
View User Profile
-
Send Message
Posted Sep 15, 2022Hello Kemayo,
Thanks for this addons, which works perfectly.
The only issue I have, it doesn't work is Adibags to show the ilevel on bag items.
-
View User Profile
-
Send Message
Posted Sep 1, 2022any plans to update this for Classic WOTLK ? or any suggestion of another addon that does same/similiar thing ?
-
View User Profile
-
Send Message
Posted May 10, 2022Is there an option to move the item level numbers from the top to the bottom of the icon? I've a few things competing for that top space of the icon.
-
View User Profile
-
Send Message
Posted Aug 4, 2022;.
-
View User Profile
-
Send Message
Posted Jul 27, 2021Error From TBCC:
4x SimpleItemLevel\addon.lua:198: Usage: Item:CreateFromItemLink(itemLinkString)
[string "=[C]"]: in function `error'
[string "@FrameXML\ObjectAPI\Item.lua"]:35: in function `CreateFromItemLink'
[string "@SimpleItemLevel\addon.lua"]:198: in function <SimpleItemLevel\addon.lua:195>
[string "=[C]"]: ?
[string "=[C]"]: ?
[string "=[C]"]: ?
[string "@AutoCombatLogger\Libs\AceHook-3.0\AceHook-3.0-9.lua"]:95: in function <...ns\AutoCombatLogger\Libs\AceHook-3.0\AceHook-3.0.lua:87>
[string "=[C]"]: ?
[string "=[C]"]: ?
[string "=[C]"]: ?
[string "@TradeSkillMaster\LibTSM\Service\ItemTooltipClasses\Wrapper.lua"]:107: in function <...Master\LibTSM\Service\ItemTooltipClasses\Wrapper.lua:105>
[string "=[C]"]: in function `SetAuctionSellItem'
[string "@Auctionator\Auctionator-2.5.5.lua"]:1211: in function `Atr_GetSellItemInfo'
[string "@Auctionator\Auctionator-2.5.5.lua"]:3116: in function `Atr_SetDepositText'
[string "@Auctionator\Auctionator-2.5.5.lua"]:3076: in function `Atr_UpdateUI_SellPane'
[string "@Auctionator\Auctionator-2.5.5.lua"]:3013: in function `Atr_UpdateUI'
[string "@Auctionator\Auctionator-2.5.5.lua"]:2851: in function `Atr_Idle'
[string "@Auctionator\Auctionator-2.5.5.lua"]:2800: in function `Atr_OnUpdate'
[string "*:OnUpdate"]:1: in function <[string "*:OnUpdate"]:1>
Locals:
(*temporary) = "Usage: Item:CreateFromItemLink(itemLinkString)"
-
View User Profile
-
Send Message
Posted Jul 27, 2021Thanks! I think that should be fixed in v13.
-
View User Profile
-
Send Message
Posted Sep 25, 2022In reply to Kemayo:
any chance to get this to work for litebag? https://github.com/xod-wow/LiteBag for WOTLK
-
View User Profile
-
Send Message
Posted Jun 15, 2021Can you add it to tooltips also on TBC?
Something similar to this?
-
View User Profile
-
Send Message
Posted Jul 27, 2021I've done so, though for now it's just adding a line.
-
View User Profile
-
Send Message
Posted Feb 10, 2021Hi,
Any chance to make it show ilvl on Shadowghast white base items in bags?
-it shows ilvl when the white item is equipped, just not when in bags or bank
Also I've found a bug - if you put an item in the bank, it will also show the ilvl number on the same slot# in the reagent bank (see the attached screenshot) - it happens 100% of the time.
-
View User Profile
-
Send Message
Posted Feb 11, 2021Regarding "ilvl on Shadowghast white base items" - seems there is a check for item quality set to "green or better" - I changed it to "white or better" and it works now.
<addon.lua>
-- Shadowlands has Uncommon, BCC has Good, Classic has LE_
quality = Enum and (Enum.ItemQuality.Good or Enum.ItemQuality.Uncommon) or LE_ITEM_QUALITY_UNCOMMON
change to:
-- Shadowlands has Uncommon, BCC has Good, Classic has LE_
quality = Enum and (Enum.ItemQuality.Good or Enum.ItemQuality.Common) or LE_ITEM_QUALITY_UNCOMMON
Would be useful if there is an option to change the minimum itemquality in game (like /simpleilvl showminimum common/uncommon)
-
View User Profile
-
Send Message
Posted Jul 27, 2021So, you could technically do
/script SimpleItemLevelDB.quality = Enum.ItemQuality.Commonbut yeah, I can add a slashcommand for it.-
View User Profile
-
Send Message
Posted Jul 27, 2021Also, I've fixed the reagent bank thing.
-
View User Profile
-
Send Message
Posted Nov 23, 2020the stuttering issue where you dont get tooltip on some items seems to be a conflict with the "details!" addon.. can this be fixed?
-
View User Profile
-
Send Message
Posted May 14, 2020Is it possible for Simple Item Levels to show the combined average item level of all equipped items?
-
View User Profile
-
Send Message
Posted May 10, 2022In reply to Lothaer:
did you find a command or answer to this? possibly another addon?
-
View User Profile
-
Send Message
Posted May 10, 2022In reply to Lothaer:
did you find a command or answer to this? possibly another addon?