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

How to change temple position

tofik1432

New Member
Joined
Jun 20, 2009
Messages
162
Reaction score
0
Hi, I need help with one thing because I'm a newbie in making ots : so how can I change my temple position in SQL ots? because i changed my map so temple position is wrong ;/
plx fast help !! i can give rep :D
 
Last edited:
go to ur database.....go to players......press Edit in the one u want to edit the player position.......and search pos x , pos y, and pos z, then chanegd them
 
In config.lua set the new player position there. after you do that

try changing it in SQLite manager or MySQL manager, whichever one you have, under players.
 
i looked in config.lua but there isn't any line of player pos , temple pos. ;/

quas , where should i do that? in phpmyadmin >> ots >> players ?
 
LUA:
	-- Account Manager
	accountManager = "yes" -- Yes or No, you choose
	newPlayerChooseVoc = "yes" -- Yes or No you, choose
	newPlayerSpawnPosX = X -- X here	
	newPlayerSpawnPosY = X -- Y here
	newPlayerSpawnPosZ = X -- Z here
	newPlayerTownId = X -- TownID here
	newPlayerLevel = X -- PlayerLevel here
	newPlayerMagicLevel = X -- PlayerMlvl here
	generateAccountNumber = "no"
 
try this
PHP:
UPDATE players SET world_id = 0 AND town_id = 1 AND posx = 955, posy = 1029, posz =6

change the numbers...for ur temple position ...posx posy and posz
 
Back
Top