Jump to content

Please Help Me - Exp Problem


Recommended Posts

  • Replies 4
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

  • Bot

1. Go into your root.eix/epk to uicharacter.py and search for:

self.GetChild("Exp_Value")

replace this and the following line with:

self.GetChild("Exp_Value").SetText(str(unsigned32(player.GetEXP())))
self.GetChild("RestExp_Value").SetText(str(unsigned32(player.GetStatus(player.NEXT_EXP)) - unsigned32(player.GetStatus(player.EXP))))

2. Now search for: class CharacterWindow(ui.ScriptWindow): above it write the function:

def unsigned32(n):
return n & 0xFFFFFFFFL

Screen for point 1

Screen for point 2

Edited by Metin2 Dev
Core X - External 2 Internal

english_banner.gif

Link to comment
Share on other sites

1. Go into your root.eix/epk to uicharacter.py and search for:

 

self.GetChild("Exp_Value")

replace this and the following line with:

self.GetChild("Exp_Value").SetText(str(unsigned32(player.GetEXP())))
self.GetChild("RestExp_Value").SetText(str(unsigned32(player.GetStatus(player.NEXT_EXP)) - unsigned32(player.GetStatus(player.EXP))))

2. Now search for: class CharacterWindow(ui.ScriptWindow): above it write the function:

def unsigned32(n):
return n & 0xFFFFFFFFL

Screen for point 1

Screen for point 2

thank you. it worked

Edited by Metin2 Dev
Core X - External 2 Internal
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.