Simple Item Levels
Show item levels on:
- The character panel
- The inspect panel
- Weapons, armor, and artifact relics in bags (built in, bagnon, baggins, inventorian)
I'm open to adding them in more places.
Shows an up-arrow on items in your bags which you can use whose item level is higher than whatever you currently have equipped.
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
Is there a way to move the position of the ilvl number in the icon field? Currently it's positioning itself in the upper right of the item icon which is over lapping the Can I Mog It notification symbol. Thanks.
In reply to Ookami313:
Can I Mog It? has an option page to change where that Icon is displayed if you can't wait on this Mod.
In reply to MavWildcard:
Good to know, thanks. It's an option to use while waiting to see if this feature can be added, and I'm hoping so because Pawn gets overlapped a bit too after testing it recently for DF compatibility..
In reply to Ookami313:
Latest alpha has this in the settings.
In reply to Kemayo:
Awesome, thanks. I'll grab it and try it out.
/simpleilvl color is a bit to simple for me.
Quality color is to dark and unreadable for me.
But just white is way to simple. Better some Yellow for more contrast would be nice.
So 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
not show equiped item ilevel in the compare frame
Hello,
Is is possible to add the itemlevel on the "currently equipped" tooltip? Attaching a screenshot for clarity.
https://ibb.co/28hvNhL
Hello 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.
any plans to update this for Classic WOTLK ? or any suggestion of another addon that does same/similiar thing ?
Is 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.
;.
Error 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)"
Thanks! I think that should be fixed in v13.
In reply to Kemayo:
any chance to get this to work for litebag? https://github.com/xod-wow/LiteBag for WOTLK
Can you add it to tooltips also on TBC?
Something similar to this?
I've done so, though for now it's just adding a line.
Hi,
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.
Regarding "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)