View Full Version : Level doesn't update ...
Roath
07-09-2006, 07:33 AM
for some strange reason the level in the unitframes doesn't seem to update when i level up, first on relog, zone change or reloadui it changes.
anyone experiencing the same?
how do i solve this?
Gigamo
07-09-2006, 07:37 AM
Yeh have that too. reloading ui everytime you level isnt that much of a hassle tho ^^
Cleeq
07-09-2006, 10:02 AM
Yeah, everyone is having that problem. I'm assuming it has something to do with an event that changed in the patch. I haven't investigated what event is used to display the level on the character, but thats most likely the cause. Tiv would know more than me about it I'm sure :D
Gandharva
07-10-2006, 08:26 AM
\Nurfed_UnitFrames\Nurfed_UnitFrames.lua -> Line 54
after this line add:
lib:UpdateUnit();
should fix it.
Roath
07-10-2006, 08:42 AM
YES!! it works!! thanks alot Gandharva!!
Belkelel
07-10-2006, 08:51 AM
In the Nurfed_UnitFrames.lua go to line 54:
elseif (event == "PLAYER_XP_UPDATE" or event == "PLAYER_LEVEL_UP" or event == "UPDATE_FACTION") then
lib:UpdateInfo("xp");
and change it to
elseif (event == "PLAYER_XP_UPDATE" or event == "PLAYER_LEVEL_UP" or event == "UPDATE_FACTION") then
lib:UpdateInfo("xp");
lib:UpdateLevel();
would be more efficient.
greetings
Loryana
09-27-2006, 10:24 PM
the new 1.12.1 update for nurfed has this bug again.. and I can't find where to fix it.
Epsil
09-28-2006, 06:38 PM
the new 1.12.1 update for nurfed has this bug again.. and I can't find where to fix it.
open Nurfed_Utility\Nurfed_Units.lua
go to line ~ 368
elseif (event == "PLAYER_XP_UPDATE" or event == "PLAYER_LEVEL_UP" or event == "UPDATE_FACTION") then
self:UpdateInfo("xp");
if (event == "PLAYER_LEVEL_UP") then
self:UpdateLevel();
and change it to
elseif (event == "PLAYER_XP_UPDATE" or event == "PLAYER_LEVEL_UP" or event == "UPDATE_FACTION") then
self:UpdateInfo("xp");
self:UpdateLevel();
if (event == "PLAYER_LEVEL_UP") then
self:UpdateLevel();
Update lv work :)
savantido
10-16-2006, 02:14 AM
Tried this fix with the latest version of Nurfed and no longer working. Probably missed something. Help please.
Coldfury
10-16-2006, 07:52 AM
Tried this fix with the latest version of Nurfed and no longer working. Probably missed something. Help please.
the new nurfed shouldn't have this bug. try to download the "real" lastest one :P.
redworm
10-16-2006, 04:57 PM
Last Updated: September 28, 2006 (10:31 PM) still bugged with lvup since last small 1.12.1 update.
Tivoli
10-16-2006, 05:38 PM
It's because UnitLevel doesn't return your level correctly right when you level, this is actually fixed in expac.
Powered by vBulletin® Version 4.1.9 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.