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

Windows Temple Position Is Wrong?

Cornex

Web Developer
Senator
Joined
Jun 15, 2008
Messages
3,443
Solutions
6
Reaction score
1,170
Location
Sweden
Hello guys, im gonna write little fast here.. So, when i made on my server it start up on x:1000 y:1000 z:7 but when i die o got the error when i try log in again "Temple position is wrong" .. When i look into phpmyadmin then its changed to x: 0 y: 0 z: 0 ..


Someone know how i can do? Im using cryingdamson 0.3.6 (8.60) V5

Repp+ For sure :)
 
why have bad town_id in database and create character..
in folder config open config.php and search:
PHP:
// sample, if all players should spawn in one city (city with ID 4):          
$config['site']['newchar_towns'] = array(5);
Remember edit 5 - for Town you have, for see town_id open RME , search in Map - edit towns and look number ID are and changed for 5
example:
now, for send all players to temple for bug.. use query:
SQL:
UPDATE players SET posx = 32369, posy = 32241, posz = 7;
and edit positions, for see positions is in RME or go temple and use /pos and changed positions x y z..
now for update players town_id use
SQL:
UPDATE players SET town_id = 5;
and 5.. remember edit for your town_id
 
why have bad town_id in database and create character..
in folder config open config.php and search:
PHP:
// sample, if all players should spawn in one city (city with ID 4):          
$config['site']['newchar_towns'] = array(5);
Remember edit 5 - for Town you have, for see town_id open RME , search in Map - edit towns and look number ID are and changed for 5
example:
now, for send all players to temple for bug.. use query:
SQL:
UPDATE players SET posx = 32369, posy = 32241, posz = 7;
and edit positions, for see positions is in RME or go temple and use /pos and changed positions x y z..
now for update players town_id use
SQL:
UPDATE players SET town_id = 5;
and 5.. remember edit for your town_id


LOL.. What an miss. Forgott to add town id in RME.. haha
 
Back
Top