Modcraft - The community dedicated to quality WoW modding!
Wrath of the Lich King Modding => Miscellaneous => Tutorials => Topic started by: Supora on September 08, 2011, 02:47:37 pm
-
So it's a simple how-to make a XP bar visible after getting a level 80.
First of all you need to get the ReputationFrame.LUA:
go to your wow folder and search a data folder. In data folder you must to open a your locale directory(example: ruRU, enGB, enUS) and open a last locale patch(patch-ruRU-3, patch-enGB-3, patch-enUS-3). In this *.mpq go to Interface>FrameXML, searc for a ReputationFrame.lua and extract it.
Second: Open ReputationFrame.lua with notepad and search for:
MAX_PLAYER_LEVEL_TABLE[2] = 80;
If accounts on your server have a expansion value 2, edit MAX_PLAYER_LEVEL_TABLE[2] = 80;
to MAX_PLAYER_LEVEL_TABLE[2] = needed level;
If you change a expansion number to other value(like 3 or 4) on the account creating function on the server you can add a new row after MAX_PLAYER_LEVEL_TABLE[2] = 80;
like this MAX_PLAYER_LEVEL_TABLE[2] = 80;
MAX_PLAYER_LEVEL_TABLE[3] = needed level;
-
nice tutorial man
-
So basically that line just tells Wow when to stop showing the XP bar? o.O
Thanks
Keta
-
So basically that line just tells Wow when to stop showing the XP bar? o.O
Thanks
Keta
No. I think the main thing is a function ReputationWatchBar:Hide();
if ( newLevel < MAX_PLAYER_LEVEL and not IsXPUserDisabled() ) then
MainMenuExpBar:Show();
MainMenuExpBar.pauseUpdates = nil;
MainMenuBarMaxLevelBar:Hide();
else
MainMenuExpBar:Hide();
MainMenuExpBar.pauseUpdates = true;
MainMenuBarMaxLevelBar:Show();
ExhaustionTick:Hide();
end
end
in ReputationFrame.lua
But this row gives a value
-
I would never had thought that this could be that easy. Thank you man!
-
I get following error:
Die Dateien der Spiel-Benutzeroberfläche sind beschädigt. Bitte entfernen Sie den Dateiordner 'InterfaceFrameXML'
It's german, but I Hope you can even help me
-
I assume you reputationframe.lua is corrupted.
-
@frezer, did you use a cracked wow.exe with no Lua and XML protection?
-
Yea it is because he doesn't have the Wow.exe that has interface edits enabled... I think o_O Then again, the error sounds more like he used an XML which isn't from the newest patch.
Thanks
Keta
-
Yea it is because he doesn't have the Wow.exe that has interface edits enabled... I think o_O Then again, the error sounds more like he used an XML which isn't from the newest patch.
Thanks
Keta
Work's now, i haven't the cracked wow.exe so. Thanks guys
-
Cant find it in Patch-enUS-3.MPQ
-
I found it in locale-enGB.MPQ
-
I found it in locale-enGB.MPQ
reputationframe.lua
-
Sorry, just searched for reputationframe :'D
Just forget my post xD
-
its telling me its corrupted
-
Had no luck with this one..
I have my sever set to max level 88
I tried adding a line in the lua with expansion 3 and set in the config for expansion 3
then added it to a patch. Also tried it with editing the line with level 80 to 88.
Ether way it crashed saying reputationframe.lua is corrupted.
Would be nice to have the XP bar working without having to use a macro with script to have it show.
Hope someone knows the fix.. Thanks
-
Anyone got this to work? If so, what am I missing?
-
For This ima Using X-Pearl
(X-pearl is showing Xp bar til you are Full LvL by server)
-
Making it work with the ReputationFrame.LUA as in this guide would be better than X-Pearl. Didn't like the xp bar addons I have tried.
But thanks for the reply!!
-
Hi guys ! I tried by this way but my wow just closed and said "Interface files are corrupted", I removed my Wow.exe LUA/XML verification (I already added a new race), but it doesn't work, someone has any idea ?
Namok