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

When i die... [STILL NEED HELP!!!!]

Lonely

New Member
Joined
Nov 28, 2009
Messages
65
Reaction score
0
When someone dies at my server they get temple pos 0 0 0 how can i fix it :S!
 
Well, If you know that their Pos when they die is 0 0 0, Why don't you add the Right temple Pos??
You might have to scirpt Diff Pos depending on their hometown Temple..

So like,
If ur Res of Carlin= 0 0 0
Thais= 0 0 0
etc....
 
config\config.php

find

Code:
// 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');
[COLOR="Red"]$config['site']['newchar_towns'][0] = array(1);[/COLOR]
$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(1);



and change


$config['site']['newchar_towns'][1] = array(1);


kk thx....
 
Last edited:
Back
Top