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

How change new Player Spawn Positions

Magictibiaman

New Member
Joined
May 25, 2009
Messages
371
Reaction score
0
hwo do i change where new players spawn, in a mysql server
i changed it in my server config.lua but that's not it
it must be somewhere in code
 
If you use the website, its in there htdocs, config file somewhere. Another option is -> phpmyadmin -> database and from there players.
 
as top said, that will change the players normal position. If you wanted to change the TEMPLE position, enter the htdocs/config/config.php file and change the start town id.
 
// CHARACTER config, format: ID_of_vocation => 'Name of Character to copy', load vocation name from $vocation_name[0] (below)
$config['site']['newchar_vocations'][0] = array(1 => 'Sorcerer Sample', 2 => 'Druid Sample', 3 => 'Paladin Sample', 4 => 'Knight Sample');
$config['site']['newchar_vocations'][1] = array(1 => 'Sorcerer Sample', 2 => 'Druid Sample', 3 => 'Paladin Sample', 4 => 'Knight Sample');
// sample, if rook only: $config['site']['newchar_vocations'][0] = array(0 => 'Rook Sample');
$config['site']['newchar_towns'][0] = array(1);
$config['site']['newchar_towns'][1] = array(1);
// sample, if all players should spawn in one city (city with ID 4): $config['site']['newchar_towns'] = array(4);
 
how do i change that? so there is 500,500,7 starting coordinates, or temple coordinates?
what line is that on
cause this code doeesn't make sense to me
 
Back
Top