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
It is ok with blizz ui bags frame
2 suggestions
1. Please add a Font Shadow option so we can add shadow to the item level text. Just like in weak auras and so on. E.g. X: -1px, Y: 1px
2. Also an option to select between Outline, Monochrome, Thick Outline, etc. for the font style.
Thanks. First one should be simple. The second will need some work. :)
_________
PS: I used to add it manually, but it doesn't seem to work in the new version anymore and I am not that good with lua. :D
Here is what I used to add it manually in the previous version, which btw still works with the 1 line fix from the comments below. To clarify the version I am using is for Interface:100002 and the addon.lua file is 300 lines longer now. So yeah quite different and I can't rework my shadow to fit within the rework of the code.
button.simpleilvl = overlayFrame:CreateFontString('$parentItemLevel', 'OVERLAY')
button.simpleilvl:SetFont("Fonts\\ARIALN.TTF", 13, "THICKOUTLINE")
button.simpleilvl:SetShadowOffset(-1, -2)
button.simpleilvl:SetShadowColor(0, 0, 0, a)
button.simpleilvl:SetPoint('TOPRIGHT', 2, -2)
button.simpleilvl:SetFontObject(NumberFontNormal)
button.simpleilvl:SetJustifyH('RIGHT')
button.simpleilvl:Hide()
New issue introduced with the 10.2.5 patch today when opening the Character panel.
```SimpleItemLevel/addon.lua:224: attempt to call field 'ItemHasEmptySlots' (a nil value)```
Full stack here: https://pastebin.com/TsUnx9sC
In reply to fivestarhotel_:
In addon.lua, line 464 (ignoring the comment immediately above) change:
for _, frame in ipairs(UIParent.ContainerFrames) do
to
for _, frame in ContainerFrameUtil_EnumerateContainerFrames() do
This appears to be working fine, despite that I do not use the combined bag, although I am neither knowledgeable or smart enough to know whether it's a lasting fix.
My one line change causes it to throw an error when attempting to use an item from a container. :(
In reply to x3j11: Okay, should be fixed in the new version that's just going out now.
Hello! Thank you for the addon)
I have a question - for some reason ilvl shows on items in a bank (bagnon) where it cannot be, e.g. - <a rel="nofollow" href="/linkout?remoteUrl=https%253a%252f%252fprnt.sc%252fAw0OMzqCWqqg">https://prnt.sc/Aw0OMzqCWqqg</a> , can I do something with that?
If you get a chance would it be possible to get this to work with ArkInventory as well?
https://www.curseforge.com/wow/addons/ark-inventory
It would be really awesome if there was an option that allows you to set the soulbound indicator active on all items without having the item level shown on all items, that way one can quickly see what crafting materials, consumables, etc. are bound when trying to send stuff to bank alts without adding the item level on them (which isn't really important).
Excellent addon, is there a way to change the update arrow to another color cuz in some items its lost.
Tried to get this to work but gave up. Itemlevel on gear seems to randomly break if you change any of the addon settings. When it does work itemlevel doesn't always show at the top, sometimes it shows at the bottom instead. Itemlevel randomly breaks with Bagnon enabled. It's pretty annoying to have it working and then one /reload later it stops working or only works for certain items.
Is there an option in Wrath to see total gearscore? if so I cannot see it
Hello there...Currently the server in 10.1 and is there an update for this lovely addon sir?
Can't read the epic purple color of the text...can we get option to change the color?!
Hi. Can we change the colours of Rare and Epic ilevels slightly so that they are brighter?
Or at least change the dark borders around the fonts to be white for those 2 rarities so that they contrast better against the dark colours of Rare and Epic colours.
Trying to make out an epic ilevel of an item that already has purples in its icon is near impossible.
In reply to SunfyreBlazing:
100%
Update for Wotlk 3.4.1 pls : ))
Can you make it an option (or require enchanting) for enchanting rings/finger?
For now I changed it from true to false and it fixed it...
Line 704
INVTYPE_FINGER = false,
Is there a way to move the "Count". It currently overlaps with the Item Level / etc. Thank you for the addon btw! It's wonderful!
In reply to Fostot:
This addon is currently functioning as a pure overlay, putting new information on top of item buttons. Item count is built-in (either to the default Blizzard bags or to whatever bag addon you're using) and I'm avoiding touching anything like that -- the instant I start meddling with that it gets much more complicated, either with risks of causing taint issues with Blizzard's stuff or with having to adapt myself to every other addon I'm integrating with. So, for now I'm afraid that the main option you have is to just not put stuff in whatever corner of the item button the count is taking up.
In reply to Kemayo:
No worries friend, that makes total sense. I will just pick a better place to put it so i can see them all : ), cheers!