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

Solved Don´t Spawn After Death

carbine

There’s too much blood in my alcohol system.
Joined
Jul 23, 2013
Messages
69
Reaction score
11
Location
Sweden
Hey!

This is a topic all over Otland.net but I have read the topic and I can´t get it work..
When new account in website is created and people are login in the server it´s fine.
When they die they can´t spawn and the game says: Temple Position is wrong..
I have tried everything I have seen on Otland but can´t get this issue to work.

I went to RME mapeditor and edit town to 1
PHP:
$config['site']['worlds'] = array(0 => 'servername');
$towns_list[0] = array(1 => 'MainCity', 2 => 'Venore', 5 => 'Thais');

When I change World_ID inside config.lua to 1 I can create account but not login, but when World_ID is on 0 I can login again.

I have changed all the samples inside database to the World_id but can´t see this to work.

I tryed:
PHP:
UPDATE players SET posx = 1000, posy = 1000, posz = 7;
and it works but when i die again it´s the same problem.

Hard to explain what I mean but I hope I get help.
Thanks.
 
Why not? It's just the cities you're able to choose when you create a character.

My mistake, that were for houses xd

This is cities you're able to choose when you create a character
PHP:
$config['site']['newchar_towns'][0] = array(1);
 
$towns_list[0] = array(1 => 'MainCity', 2 => 'Venore', 5 => 'Thais');

why 1 ,2 , 5 ?
I just wrote it here.. dident copy right here

Why not? It's just the cities you're able to choose when you create a character. :p
Can you explain more Ninja? :)

Why not? It's just the cities you're able to choose when you create a character. :p

- - - Edited - - -

Change the world id for towns_list as well

towns_list[1]
But if i have world_ID 1 I can create account but when im log in inside game i says i dont have any characters! :/
 
Last edited by a moderator:
But if i have world_ID 1 I can create account but when im log in inside game i says i dont have any characters! :/
Thought you were intending to use World ID 1, so why bothering changing between world ID's in the first place? :p

config.php (world id 0 and town id's 1, 2 and 5)
PHP:
$config['site']['newchar_towns'][0] = array(1, 2, 5);
 
Thought you were intending to use World ID 1, so why bothering changing between world ID's in the first place? :p

config.php (world id 0 and town id's 1, 2 and 5)
PHP:
$config['site']['newchar_towns'][0] = array(1, 2, 5);
But players still get temple posison wrong when they die!
 
Back
Top