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

Help Temple Position - really need help guys

knatte1

Eldin Projects
Joined
Aug 23, 2010
Messages
825
Reaction score
91
Location
Sweden
Hello, i'm just fix a server and i have map i wanna put in the server. but a know i must change the position like: "1000/1000/7"
So i put in my position in Config.lua and that didit work. It just says "wrong temple position" in Tibia client.

What must i do?
i'm noob at this so.. :(
And please post a pic :)
i'm using uniserver.

Help = Rep++
 
if you use account manager, you have to goto players then selected the account manager. then change pos x pos y and so on, I think this is right.
 
Let's say your temple position is... x: 1000, y: 1000, z: 7, well, just run this query:

SQL:
UPDATE `players` SET `posx` = 1000, `posy` = 1000, `posz` = 7 WHERE `name` IN ('Rook Sample', 'Sorcerer Sample', 'Druid Sample', 'Paladin Sample', 'Knight Sample');
 
in map editor Ctrl+t and edit the current town position to 1000,1000,7 or w/e your temple position is
and this query to update all player to the new position
PHP:
UPDATE `players` SET `posx` = 1000, `posy` = 1000, `posz` = 7
 
Back
Top