Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[PYTHON] root.epk root.eix modificating

Status
Not open for further replies.
Newbie Spellweaver
Joined
Feb 25, 2012
Messages
19
Reaction score
5
Tutorial Stolen By:

TheQerl



Hello i wona show how to modificate your client a bit more with root.epx/eix



Coordinates Under MiniMap
TheQerl - [PYTHON] root.epk root.eix modificating - RaGEZONE Forums


Open constinfo.py in a text editor (I like EditPadPro)
Go down to line#49 and change "0" to "1" like this:

MINIMAP_POSITIONINFO_ENABLE = 1


Edit or remuve insult

1) Extract your pack/locale_ca (or whichever locale file you use)
2) Navigate to locale/ca/insult.txt
3) Open insult.txt in a text editor (I like EditPadPro)
4) Remove or make changes to the listed words, be sure to keep each word on its own separate line
5) Save & Close
6) Re-pack the archive and replace it in the game's directory.



Enable Up Arrow Chat Function

1) Extract your pack/root
2) Open uichat.py in a text editor (I like EditPadPro)
3) Find the following section:



if locale.IsHONGKONG():
ENABLE_LAST_SENTENCE_STACK = TRUE

if locale.IsEUROPE():
ENABLE_CHAT_COMMAND = FALSE

if locale.IsCANADA():
ENABLE_LAST_SENTENCE_STACK = FALSE


4) Change all "FALSE" to "TRUE" (some root archives vary, depending on your server.. just change each of them to be sure you effect the correct locale archive. If you know which locale you are using, it works fine to just change that one too.

5) Re-pack the archive and replace it in the game's directory.

(self-explanatory and cannot be displayed using an image.)



Drop More Gold!

1) Extract your pack/root
2) Open game.py in a text editor (I like EditPadPro)
3) Find the following:


if attachedMoney>=1000:
self.stream.popupWindow.Close()
self.stream.popupWindow.Open(locale.DROP_MONEY_FAILURE_1000_OVER, 0, locale.UI_OK)
return


4) Change each "1000" to a higher number like "100000000" for 1kk or "100000" for 100k.
5) Re-pack the archive and replace it in the game's directory.

TheQerl - [PYTHON] root.epk root.eix modificating - RaGEZONE Forums

TheQerl - [PYTHON] root.epk root.eix modificating - RaGEZONE Forums



Put Your LVL Beside Your Name in PM

1) Extract your pack/root
2) Open uiwhisper.py in a text editor (I like EditPadPro)
3) Find the following:

Code: [Select]

net.SendWhisperPacket(self.targetName, text)


4) Replace it with this:

Code: [Select]

net.SendWhisperPacket(self.targetName, "(Lv. " + str(player.GetStatus(player.LEVEL) )+ "):" + text)


5) Save & Close
6) Re-pack the archive and replace it in the game's directory.

Note: You will not see it by your name but when you send a message to another player, they will.



Show Success Rate
1) Extract your pack/root
2) Open uirefine.py in a text editor (I like EditPadPro)
3) Find the following:

Code: [Select]

self.successPercentage.Hide()


4) Change it to this:

Code: [Select]

self.successPercentage.Show()


This shows up two times in the document, you must change BOTH.

5) Save & Close
6) Re-pack the archive and replace it in the game's directory.


TheQerl - [PYTHON] root.epk root.eix modificating - RaGEZONE Forums


Hope you lerned somting new your favorit TheQerl :) enjoy



P.S put like if helped and leve coment if your confused
 
Last edited by a moderator:
Joined
Feb 26, 2010
Messages
3
Reaction score
0
WHY does everyone copy me? they copy my servers (AlpineMT2 and Immortals2), they just copy the text I type out word for word and change it to their server name and claim it's theirs.. What is up with the Metin2 commmunity.. seriously? get original.. dumb kids

The poster copied my thread here: (Aug 15 2010)

Word for word, as you can see.. even copied my images...


-Rumor/RumorUS/CERA/PULP/MichaelCera/Nasty/MrMorden

Stop taking other people's work and saying it's by you..
Owned son.
 
Last edited:
Status
Not open for further replies.
Back
Top