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!

How to change the file extension of the pack files on client

Joined
Mar 29, 2019
Messages
1,032
Reaction score
1,191
Here's how you can change the default file extensions *.eix | *.epk to something like *.love | *.you

I will use .love & .you as example, but you can use what ever you want


Go to your client source and open ~\EterPack\EterPack.cpp

Find

Code:
strcat(m_indexFileName, ".eix");


Change to

Code:
strcat(m_indexFileName, ".love");


Find

Code:
m_stDataFileName += ".epk";

Change to

Code:
m_stDataFileName += ".you";


Result

Before

Archgeus - How to change the file extension of the pack files on client - RaGEZONE Forums


After

Archgeus - How to change the file extension of the pack files on client - RaGEZONE Forums


Remember to change the file extension in your Etermanager/Eternexus to make it work

Archgeus - How to change the file extension of the pack files on client - RaGEZONE Forums


I will explain in other thread how to create your own xtea keys for client encription

*Remember to recompile your client everytime you make a change!

See ya
 
Back
Top