Thread Tools Display Modes
04-02-15, 09:30 AM   #1
PocketAppZ
A Fallenroot Satyr
Join Date: Jan 2012
Posts: 28
Item Level Updated

How about an addon that outputs text to the chat frame to notify the player when their item level has changed.

When players are leveling 90-100, certain dungeons are not available until you reach a certain item level. Would be nice to get an output that keeps me informed of my current ilvl as well as letting me know what my new ilvl is when I equip a new piece of gear.


Seems a little unnecessary but I think it would be convenient so I don't have to open up my character pane to look at my item level after I've equipped a new piece of gear.
  Reply With Quote
04-08-15, 01:21 AM   #2
PocketAppZ
A Fallenroot Satyr
Join Date: Jan 2012
Posts: 28
No one?

No one else thinks this is a good idea? Hmph.
  Reply With Quote
04-08-15, 02:19 AM   #3
Malsomnus
A Cobalt Mageweaver
AddOn Author - Click to view addons
Join Date: Apr 2013
Posts: 203
Originally Posted by PocketAppZ View Post
No one else thinks this is a good idea? Hmph.
I can relate to this need only slightly, but it sounds pretty simple so I'll try to code something tomorrow (Thursday)
__________________
SanityCheck - If you've ever said the words "Sorry, I forgot" then you need this add-on.

Remember, every time you post a comment on an add-on, a kitten gets its wings!
  Reply With Quote
04-08-15, 02:21 AM   #4
PocketAppZ
A Fallenroot Satyr
Join Date: Jan 2012
Posts: 28
Much appreciated
  Reply With Quote
04-09-15, 05:48 PM   #5
Malsomnus
A Cobalt Mageweaver
AddOn Author - Click to view addons
Join Date: Apr 2013
Posts: 203
Well, once it gets approved, you can download your shiny new add-on right here. I hope it's what you wanted
__________________
SanityCheck - If you've ever said the words "Sorry, I forgot" then you need this add-on.

Remember, every time you post a comment on an add-on, a kitten gets its wings!
  Reply With Quote
04-09-15, 07:21 PM   #6
PocketAppZ
A Fallenroot Satyr
Join Date: Jan 2012
Posts: 28
I will give it a try and provide feedback via addon page comments

Thank you for this!

Last edited by PocketAppZ : 04-09-15 at 07:27 PM.
  Reply With Quote
04-09-15, 07:29 PM   #7
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
And if you're looking for something a bit simpler that just prints messages to chat when your ilvl changes, instead of showing it in an always-visible frame, you can try this (totally untested):

Code:
local ilvl = -1

local f = CreateFrame("Frame")
f:RegisterEvent("PLAYER_LOGIN")
f:RegisterEvent("PLAYER_AVG_ITEM_LEVEL_UPDATE")
f:SetScript("OnEvent", function()
	local total, equipped = GetAverageItemLevel()
	total = math.floor(total)
	if total == ilvl then
		return
	end
	local color = ChatTypeInfo["SYSTEM"]
	if total > ilvl then
		DEFAULT_CHAT_FRAME:AddMessage("Your average item level is now |cff99ff99" .. total .. "|r, up from " .. ilvl, color.r, color.g, color.b)
	else
		DEFAULT_CHAT_FRAME:AddMessage("Your average item level is now |cffff9999" .. total .. "|r, down from " .. ilvl, color.r, color.g, color.b)
	end
	ilvl = total
end)
If you need help turning the above code into an addon, copy and paste it into this page:
http://addon.bool.no/
__________________
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

WoWInterface » AddOns, Compilations, Macros » AddOn Search/Requests » Item Level Updated


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