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

Incorrect player temple position?

Bunkerdweller

New Member
Joined
Apr 14, 2010
Messages
46
Reaction score
0
Location
The Netherlands
I'm new to hosting open tibia servers and I can't figure out how to fix my character's temple position (even the account manager has a incorrect position.) I've set the town ID of the account manager to 1 (temple position: x=5000, y=5000, z=7) and it's still saying the temple position is wrong. Yes, I have a temple on that exact position.

Can anyone help me? :(

Account manager configuration, as in config.LUA
accountManager = "yes"
namelockManager = "yes"
newPlayerChooseVoc = "no"
newPlayerSpawnPosX = 5000
newPlayerSpawnPosY = 5000
newPlayerSpawnPosZ = 7
newPlayerTownId = 1
newPlayerLevel = 1
newPlayerMagicLevel = 0
generateAccountNumber = "no"
 
Ok.. go to the localhost/phpmyadmin -- open your database... and open up players... Click that pen tool for edit and scrrol down till posX, posZ, posY.. and make it 5000 5000 7.. Its simple :p
 
You should use "true" instead of "yes" and "false" instead of "no"
Like this :
Code:
accountManager = [COLOR="Red"]"true"[/COLOR]
namelockManager = [COLOR="red"]"true"[/COLOR]
newPlayerChooseVoc = [COLOR="red"]"false"[/COLOR]
newPlayerSpawnPosX = 5000
newPlayerSpawnPosY = 5000
newPlayerSpawnPosZ = 7
newPlayerTownId = 1
newPlayerLevel = 1
newPlayerMagicLevel = 0
generateAccountNumber = [COLOR="red"]"false"[/COLOR]
 
@Reyn i think he did ?
accountManager = "yes"
namelockManager = "yes"
newPlayerChooseVoc = "no"
newPlayerSpawnPosX = 5000
newPlayerSpawnPosY = 5000
newPlayerSpawnPosZ = 7
newPlayerTownId = 1
newPlayerLevel = 1
newPlayerMagicLevel = 0
generateAccountNumber = "no"
 
Change posx, posy, posz in your phpmyadmin. Go to players -> then edit all the samples include your account manager.

Also start your rme mapeditor -> CTRL - T -> Add your cordinates.

Regards,
Waller

Rep if helped.

Edit: If that dont work: SQL - UPDATE players SET posx = xxx, posy = xxx, posz = xxx, town_id = x
 
Last edited:
Change posx, posy, posz in your phpmyadmin. Go to players -> then edit all the samples include your account manager.

Also start your rme mapeditor -> CTRL - T -> Add your cordinates.

Regards,
Waller

Rep if helped.

Edit: If that dont work: SQL - UPDATE players SET posx = xxx, posy = xxx, posz = xxx, town_id = x

I TOLD HIM THAT -.-" Damn noobs xDD
 
Back
Top