• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Gesior game world problem

wikutag

SoulBound 8.6 100% custom
Joined
Dec 27, 2012
Messages
305
Reaction score
0
Location
United states Kentucky
How would i add a game world... It will not let me... wont lemme create an account without it... I want it called Soulless.. Im pretty sure its in this area but idk wtf to add and where -.-
Code:
$location = array(
'USA' =>'North America',
// 'USA' =>'North America'
);
$default = 'all';

$worlds = array();
$worlds[1] = array('GER', $config['server']['worldType']);
/*
$worlds[1] = array('USA', 'optional');
$worlds[2] = array('GER', 'hardcore');
$worlds[3] = array('USA', 'open');
$worlds[4] = array('USA', 'optional');
$worlds[5] = array('USA', 'hardcore');
*/

$voc = array(Knight, Sorcerer, Druid, Paladin); // if empty, Rook Sample will be used

$suggestname = NULL; // not available
$version = '1010'; // for download link

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;
 
Back
Top