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

Wrong Temple Pos

a7aa7a

Member
Joined
Jul 5, 2011
Messages
316
Reaction score
13
i want to make all the characters with town id 1 and temple pos 32346,32224,7
 
open C:\xampp\htdocs > accountmanagement.php
Search for
$player->setPosX(as you want);
$player->setPosY(as you want);
$player->setPosZ(as you want);
then edit :D
if i help you send me rep :)
 
Execute this on phpmyadmin, but it will affect all players:
Code:
UPDATE players SET posx = 32346, posy = 32224, posz = 7;
 
Back
Top