• 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 do i set new char spawn point?

zedo99

New Member
Joined
Jun 26, 2009
Messages
34
Reaction score
0
Location
Cincinnati, OH
My new chars are spawning in Yalahar. How do i change it to thais?




// CHARACTER config, format: ID_of_vocation => 'Name of Character to copy', load vocation name from $vocation_name[0] (below)
$config['site']['newchar_vocations'] = array(1 => 'Sorcerer Sample', 2 => 'Druid Sample', 3 => 'Paladin Sample', 4 => 'Knight Sample');
// sample, if rook only: $config['site']['newchar_vocations'] = array(0 => 'Rook Sample');
$config['site']['newchar_towns'] = array(5);
// sample, if all players should spawn in one city (city with ID 5): $config['site'] ['newchar_towns'] = array(5);
// list of vocations on ots
$vocation_name[0] = array(0 => 'None', 1 => 'Sorcerer', 2 => 'Druid', 3 => 'Paladin', 4 => 'Knight'); // id => 'name' , $vocation_name[0] - promotion level 0
$vocation_name[1] = array(1 => 'Master Sorcerer', 2 => 'Elder Druid', 3 => 'Royal Paladin', 4 => 'Elite Knight'); // id => 'name' , $vocation_name[1] - promotion level 1
// list of towns on ots
$towns_list = array(1 => 'Carlin', 2 => "Ab'Dendriel", 3 => "Kazordoon", 4 => 'Thais', 5 => 'Venore', 12 => 'my new city', 8 => 'any other city?'); // list of towns, id => 'name'
 
Edit the characters called "Sorcerer Sample", "Druid Sample", "Paladin Sample" & "Knight Sample" in your database to have the thais townID and coordinates.
 
Back
Top