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!

Mini Tuto | How to change the name of the "root" file used by the client

Joined
Mar 29, 2019
Messages
1,032
Reaction score
1,190
Simple as fk, but there´s still people that dont know how to do it

The only purpouse of this is "hide" your serverinfo.py located in root

Go to you client source and open UserInterface.cpp

Find

Code:
CEterPackManager::Instance().RegisterRootPack

You will find this in a untouched client source

Code:
CEterPackManager::Instance().RegisterRootPack((stFolder + std::string("[B]root[/B]")).c_str());
NANOEND
return true;

Replace root with whateveryouwant to call you root file and gtg

Almost forgot, add the new name of the root file to the Index file located at pack folder

Archgeus - Mini Tuto | How to change the name of the "root" file used by the client - RaGEZONE Forums


Remember to recompile your client everytime you make a change
 
Last edited:
Back
Top