Thread Tools Display Modes
06-09-13, 08:01 AM   #1
Haleth
This Space For Rent
 
Haleth's Avatar
Featured
Join Date: Sep 2008
Posts: 1,173
Two item levels?

A friend linked me an item the other day and the tooltip showed two item levels, like this:



Does anyone know what this means? First time I've seen this. I know the global string is ITEM_LEVEL_ALT, but that doesn't really tell me anything.
  Reply With Quote
06-09-13, 08:16 AM   #2
Clamsoda
A Frostmaul Preserver
Join Date: Nov 2011
Posts: 269
What the frick...?
  Reply With Quote
06-09-13, 09:27 AM   #3
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,928
Could it be the item level it would become when it has been upgraded to the next level ?

Edit:

Scratch that, unless they've introduced upgrading to low level items.
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
  Reply With Quote
06-09-13, 09:48 AM   #4
Haleth
This Space For Rent
 
Haleth's Avatar
Featured
Join Date: Sep 2008
Posts: 1,173
I just upgraded my weapon on my main and it only shows the new item level, not the original one. It shows "Upgrade Level: 1/2" below that.

So this is used for something else, but what? It definitely seems like a bug.
  Reply With Quote
06-09-13, 10:32 AM   #5
Tonyleila
A Molten Giant
 
Tonyleila's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 758
might be a dumb question but have you testet if its the same without addon?
right idem level seams to be 128 http://de.wowhead.com/item=30053

I also tested this and linked it ingame with this macro and for me it only shows the 128 only
Code:
/run DEFAULT_CHAT_FRAME:AddMessage("\124cffa335ee\124Hitem:30053:0:0:0:0:0:0:0:0\124h[Schulterstücke des Kriegstänzers]\124h\124r");
__________________
Author of: LeilaUI and Aurora: Missing Textures
__________________

Last edited by Tonyleila : 06-09-13 at 10:35 AM.
  Reply With Quote
06-09-13, 10:40 AM   #6
Nibelheim
local roygbi-
 
Nibelheim's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2010
Posts: 1,600
Originally Posted by Haleth View Post
A friend linked me an item the other day and the tooltip showed two item levels, like this:



Does anyone know what this means? First time I've seen this. I know the global string is ITEM_LEVEL_ALT, but that doesn't really tell me anything.
Looks like Blizz might start taking into account gem sockets (which technically count towards the ilvl of the item) and whether or not they have gems in them.

Could be useful for incentivizing people to put gems in their gear if their ilvl is too low for content, or just to get their ilvl up to the proper ilvl of their gear.

Last edited by Nibelheim : 06-09-13 at 10:43 AM.
  Reply With Quote
06-09-13, 03:34 PM   #7
Haleth
This Space For Rent
 
Haleth's Avatar
Featured
Join Date: Sep 2008
Posts: 1,173
Well, I haven't seen it on anything else so far, I'll ask my friend to link it again (it doesn't work if I do so myself) and see what I can figure out from the link data.
  Reply With Quote
06-09-13, 06:28 PM   #8
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,928
I can't see anything in Blizzards code that uses the ITEM_LEVEL_ALT. Neither in 5.0.4 when it was introduced in globalstrings.lua nor 5.3.0. I can only assume an addon is utilising the globalstring for their own display but a quick look on curse and wowi hasn't located any screenshots that show the same effect yet.
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
  Reply With Quote
06-09-13, 06:35 PM   #9
Haleth
This Space For Rent
 
Haleth's Avatar
Featured
Join Date: Sep 2008
Posts: 1,173
There's nothing in my UI that would cause it to display, so I'm clueless.
  Reply With Quote
06-10-13, 12:24 PM   #10
Tonyleila
A Molten Giant
 
Tonyleila's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 758
Now I know the challenge mode item level is normaly shown on this place
If I'm in challange mode it shows 463 (522) for 522 items.
__________________
Author of: LeilaUI and Aurora: Missing Textures
__________________

Last edited by Tonyleila : 06-10-13 at 01:09 PM.
  Reply With Quote
06-10-13, 09:22 PM   #11
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Originally Posted by Xrystal View Post
I can't see anything in Blizzards code that uses the ITEM_LEVEL_ALT. Neither in 5.0.4 when it was introduced in globalstrings.lua nor 5.3.0. I can only assume an addon is utilising the globalstring for their own display but a quick look on curse and wowi hasn't located any screenshots that show the same effect yet.
You won't see anything in Blizzard's UI code using that string in relation to tooltips, because tooltip text is not generated in Lua -- it's generated C-side when you call tooltip methods like SetItem, SetSpell, SetUnit, etc.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
  Reply With Quote
06-11-13, 03:01 PM   #12
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,928
Originally Posted by Phanx View Post
You won't see anything in Blizzard's UI code using that string in relation to tooltips, because tooltip text is not generated in Lua -- it's generated C-side when you call tooltip methods like SetItem, SetSpell, SetUnit, etc.
Ah thanks, didn't know that part of it. So the C code part uses the globalstrings.lua file too ?
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
  Reply With Quote
06-11-13, 03:25 PM   #13
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
Yes. You can change the global strings to change the tooltip text. However, this is not recommended, as it is very likely to break addons that depend on reading tooltip text.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
  Reply With Quote
06-29-13, 07:25 AM   #14
jazqa
A Kobold Labourer
Join Date: Jun 2013
Posts: 1
In 5.3 lv90 bgs scale items down to 496.

In lv70 bgs they might scale the items down to 126.

EDIT: Low level Battlegrounds actually boost your itemlevel a bit. Just tested this on my lv 60 DK. The bg boosted my lv85 sword to 97


ilvl 85 (97)

Last edited by jazqa : 06-30-13 at 01:38 PM.
  Reply With Quote

WoWInterface » General Discussion » General WoW Chat » Two item levels?

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off