• 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!

(Gesior2012) Cannot create character

IllidanPawz

New Member
Joined
May 10, 2013
Messages
15
Reaction score
2
Cannot create an account because of this..
Theres no world to choose from :S
How do I fix this?

9gebz8.jpg



Config.php
PHP:
# Account Maker Config
$config['site']['serverPath'] = "C:/TFS/";
$config['site']['useServerConfigCache'] = false;
$config['site']['worlds'] = array(0 => 'Acc. Maker Test World');
$towns_list[0] = array(1 => 'Thais', 2 => 'Venore', 5 => 'Carlin');

Createaccount.php
PHP:
foreach($worlds as $k =>$v) // remove invalid worlds
    if(!isset($location[$v[0]]) || !isset($config['site']['worlds'][$k]))
        unset($worlds[$k]);

$tmp = array();
foreach($location as $k =>$v) // remove invalid/unused locations
    foreach($worlds as $i =>$j)
        if($j[0] == $k) {
            $tmp[$k] = $v;
            break;
 
Try to click in "change game world"

@Edited

try to change:
$config['site']['worlds'] = array(0 => 'Acc. Maker Test World');
to
$config['site']['worlds'] = array(1 => 'Testera');

in your config.lua try to put:
worldId = 1
serverName = "Testera"
 
I got this issue before aswell, but I managed to fix it somehow. I dont remember exactly how to do it, but it has something to do with ur Server Config (confg.lua) that it doesnt connect together in the right way or something.
 
Back
Top