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

Temple Positon fail please help!

Azoria

New Member
Joined
Jul 10, 2008
Messages
65
Reaction score
1
Please help! I'll get this error Wrong temple postions, Please contakt Admin


xampp>Htdocs> Config.inc


Town IDs must be correct and match those in your map
*/
# Town names
$cfg['temple'][1]['name'] = 'Thais';
$cfg['temple'][2]['name'] = 'Venore';
$cfg['temple'][3]['name'] = 'Ab';
$cfg['temple'][4]['name'] = 'Carlin';

# Now set which town(s) you want to use in character making
$cfg['temple'][1]['x'] = 32369;
$cfg['temple'][1]['y'] = 32241;
$cfg['temple'][1]['z'] = 7;
$cfg['temple'][1]['enabled'] = true;

$cfg['temple'][1]['x'] = 1076;
$cfg['temple'][1]['y'] = 454;
$cfg['temple'][1]['z'] = 7;
$cfg['temple'][1]['enabled'] = true;

$cfg['temple'][1]['x'] = 703;
$cfg['temple'][1]['y'] = 600;
$cfg['temple'][1]['z'] = 7;
$cfg['temple'][1]['enabled'] = true;

$cfg['temple'][1]['x'] = 32369;
$cfg['temple'][1]['y'] = 32241;
$cfg['temple'][1]['z'] = 7;
$cfg['temple'][1]['enabled'] = true;



Server Config.lua


-- Account Manager
accountManager = "yes"
newPlayerChooseVoc = "yes"
newPlayerSpawnPosX = 32369
newPlayerSpawnPosY = 32241
newPlayerSpawnPosZ = 7
newPlayerTownId = 1
newPlayerLevel = 8
newPlayerMagicLevel = 1
generateAccountNumber = "no"


Where's the fail? :/

Please help me.

Thanks for quick answer

// Azoria
 
I'm not entirely sure, but...

If Venore is your second city, then maybe change these:
$cfg['temple'][1]['x'] = 1076;
$cfg['temple'][1]['y'] = 454;
$cfg['temple'][1]['z'] = 7;
$cfg['temple'][1]['enabled'] = true;

to:
$cfg['temple'][2]['x'] = 1076;
$cfg['temple'][2]['y'] = 454;
$cfg['temple'][2]['z'] = 7;
$cfg['temple'][2]['enabled'] = true;

Once again, I'm not entirely certain. But I think it might help. =]
 
Go to your mapeditor and open the map to see if the coordinates are correctly written though, that may help a lil bit.




yea.. but i can se the coordinates with my Gm char also..

And it wont work..


-- Account Manager
accountManager = "no"
newPlayerChooseVoc = "yes"
newPlayerSpawnPosX = 32360
newPlayerSpawnPosY = 31782
newPlayerSpawnPosZ = 7
newPlayerTownId = 5
newPlayerLevel = 8
newPlayerMagicLevel = 1
generateAccountNumber = "no"


:S
 
-- Account Manager
accountManager = "no" <------ If you want to use your account manager, change to yes.
newPlayerChooseVoc = "yes"
newPlayerSpawnPosX = 32360
newPlayerSpawnPosY = 31782
newPlayerSpawnPosZ = 7
newPlayerTownId = 5
newPlayerLevel = 8
newPlayerMagicLevel = 1
generateAccountNumber = "no"


This seems to be done, now go to your database, and account manager there or your character, edit and past the coordinates.
 
Having the exact same problem as you, Using a custom built map, with temple cords at 5000,4999,7 have that position set in config, in RME, and i believe in my database



town_id int(11) No 1 Browse distinct values Change Drop Primary Unique Index Fulltext
posx int(11) No 5000 Browse distinct values Change Drop Primary Unique Index Fulltext
posy int(11) No 4999 Browse distinct values Change Drop Primary Unique Index Fulltext
posz int(11) No 7 Browse distinct values Change Drop Primary Unique Index Fulltext


Sorry dont know how to copy it outta the window of phpmyadmin.
 
Last edited:
Alright I fixed my problem, using a custom map, and using In game account manager, Go into your myphpadmin, go to your OTserv database, Then to players, Click on players on the menu on the left hand of the screen, And click browse, should show in game account manager position, Change that, to the spot if your using in game.


Now I believe if your using out of game account manager, you need to go to just the players tab, And change the position's

town_id int(11) No 1
posx int(11) No 5000
posy int(11) No 4999
posz int(11) No 7


change those values, should be in the default line when you click to edit those.

Worked for me, Tell me if it works for you.
 
Back
Top