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

No levels lost when died

Nofus

New Member
Joined
Jul 16, 2009
Messages
415
Reaction score
1
Hey guys i have a 8.54 server with website and phpmyadmin mysql. as the topic says, you dont loose any levels when you die. :S i have pvp and the deathLostPercent = 0 in my config. What should i do? The deathlostpercent was 10 before and i had the same problem
 
The account manager and my GM Char is 100, The rest of the players is 0. And i'm using a website so acc manager is disabled.
 
Alright, well do i have to do this all the time i start the server? because i have to do that when i need to set the temple position all the time. I write this in SQL
UPDATE `players` SET `town_id` = 1;
How can i make it permanent?
 
// 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'][1] = array(5);
$config['site']['newchar_towns'][1] = array(5);
// sample, if all players should spawn in one city (city with ID 4):
$config['site']['newchar_towns'] = array(5);

Does it look good?
 
Back
Top