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

plz help with account manager

Black Sprit

New Member
Joined
Feb 10, 2010
Messages
13
Reaction score
0
plz help with account manager
when i log in wit account manager ,a msg come out and say wrong temple position
plz help and thx
 
Database -> players -> account manager
Just change the town id

He needs to change it his config.lua also.

If you are using a website to create accounts, run these queries in your database:

Code:
UPDATE `players` SET `posx` = coordinate x

Code:
UPDATE `players` SET `posy` = coordinate y

Code:
UPDATE `players` SET `posz` = 7
 
Why 3 queries?
PHP:
UPDATE players SET posx = 100, posy = 100, posz = 7, town_id = 1 WHERE name = "Account Manager";
 
Back
Top