PDA

View Full Version : Level not updating...



Tape
10-03-2006, 04:00 PM
I have tried several custom frames so far but in all of them when I level, my level is not updating. Any ideas why?

Ralrra
10-03-2006, 04:06 PM
it's bugged currently, the function that tracks your level doesn't get called until you actually level in-game, so the first time you level you won't see anything, each time after that it'll level up when you level, but it will always be 1 level behind until you relog/reloadui.

Tape
10-03-2006, 04:17 PM
Ah, ok. Thanks =)

Epsil
10-03-2006, 05:12 PM
Hi
Go to http://forums.nurfed.com/showthread.php?t=10317

For the Fix

Ralrra
10-03-2006, 05:14 PM
Hi
Go to http://forums.nurfed.com/showthread.php?t=10317

For the Fix

Actually that's an outdated fix that no longer works for the current version of Nurfed.

Epsil
10-03-2006, 05:22 PM
Read the post to the end ^^

The fix i have posted work with latest version of nurfed
No problem with lv update

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();

redworm
10-03-2006, 06:08 PM
doesnt work

Tape
10-03-2006, 06:18 PM
Yeah, that is already there and it still did not work.

Imarkon
10-04-2006, 02:30 AM
Read the post to the end ^^

The fix i have posted work with latest version of nurfed
No problem with lv update

open Nurfed_Utility\Nurfed_Units.lua
go to line ~ 368




and change it to
i don't even have such line 368 :|

Epsil
10-04-2006, 05:19 AM
Hi

Perhaps you have a modified version of nurfed_utility/nurfed_units.lua

It s work for me :s

I attach my version :

Tape
10-04-2006, 05:38 AM
Damn it, I dinnt know you had to do it (reload ui) every time. =/

Imarkon
10-04-2006, 05:47 PM
Hi

Perhaps you have a modified version of nurfed_utility/nurfed_units.lua

It s work for me :s

I attach my version :
tnx m8, tomorrow i'll try and i'll make ya know

a67rhf7823jn8747==