wikutag
SoulBound 8.6 100% custom
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;