• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Windows Help with character xyz

htdocs/config/config.php

Find:
PHP:
$config['site']['newchar_towns'][0] = array(2);

That "2" is the town id.
 
Check your config.lua at the top. newPlayerTownId
Check in database, all sample character's are town_id = 5.
 
It's because accountmanagement.php is broken, you have to change it manually, replace number in that line:
Code:
$player->setTownId(5);
 
global map ?

what position you want the character is born.
Send me position and i make Database command

It's because accountmanagement.php is broken, you have to change it manually, replace number in that line:
Code:
$player->setTownId(5);

Here's solution, he doesn't need to update positions, because TFS will automatically get positions (if they're 0/0/0 or invalid) based on town id.
 
Back
Top