• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Windows temple position is wrong.Please contact to administrator

fleszu_pl

New Member
Joined
Jul 8, 2011
Messages
91
Reaction score
1
Hello i set possition temple in config.lua and config.php Sample of character got possition too. But after dead when i try too log in game show the message "temple position is wrong.Please contact to administrator"
Someone know how to fix it?
 
@tetra20 I got acc menager i edit his position, and i got edited map. But still not worked when i make new character his town_id is still 0
idk how to fix it
 
ye i got it. But its still now working problem is not in the map

- - - Updated - - -

i think my main problem is new haracter got town_id "0" and idk how to change it. (not by my self always, but automatic)
 
Are you use gesior for create characterS? for fix this you need.. open RME
and search what town_id get your city
now accountmanagament.php
search this in line 792
Code:
					$player = $ots->createObject('Player');
				    $player->setName($newchar_name);
				    $player->setAccount($account_logged);
				    $player->setGroup($char_to_copy->getGroup());
				    $player->setSex($newchar_sex);
				    $player->setVocation($char_to_copy->getVocation());
				    $player->setConditions($char_to_copy->getConditions());
				    $player->setRank($char_to_copy->getRank());
				    $player->setLookAddons($char_to_copy->getLookAddons());
				   [COLOR="#FF0000"][B] $player->setTownId(5); [/B][/COLOR]

look here:
Code:
 $player->setTownId(5);
edit for number town you use and create again your character ;)
 
Back
Top