Page 1 of 1

Where can i find auto-create account module?

Posted: Tue Jun 29, 2010 11:53 pm
by scuarplex
Hey, in what file can i see the auto-create account code? I would like to change something.

greets.

Re: Where can i find auto-create account module?

Posted: Wed Jun 30, 2010 2:07 am
by nonom
There are some useful steps.

First, looking properties files. This property was in loginserver.properties:

Code: Select all

AutoCreateAccounts = True
Now use search into the Config.java file. L2_Gameserver project.

Code: Select all

AUTO_CREATE_ACCOUNTS = Boolean.parseBoolean(serverSettings.getProperty("AutoCreateAccounts","True"));
Ok, we found "AUTO_CREATE_ACCOUNTS" that contains the boolean value to enable/disable this feature. Now, we need to search this string again in L2_Gameserver project and ...

L2_GameServer/java/com/l2jserver/loginserver/LoginController.java

Code: Select all

if (Config.AUTO_CREATE_ACCOUNTS){      ... here is your code