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

Solved phpmyadmin command reset postions

TKO

Syphero Owner!
Joined
Mar 10, 2008
Messages
2,252
Reaction score
27
Location
Sweden
hey i wanna know if there is a php myadmin command to reset players postions? like i want them to be set to tempel 1000 1000 7
any one have a command?:)
 
Last edited:
Code:
UPDATE `players` SET `posx` = "1000";
Code:
UPDATE `players` SET `posy` = "1000";
Code:
UPDATE `players` SET `posz` = "7";

You must execute them individually.
 
Code:
UPDATE `players` SET `posx` = "1000";
Code:
UPDATE `players` SET `posy` = "1000";
Code:
UPDATE `players` SET `posz` = "7";

You must execute them individually.

Nope, you can do them all at once ;)

Code:
UPDATE `players` SET `posx`=100;
UPDATE `players` SET `posy`=100;
UPDATE `players` SET `posz`=100;

I use this exact command all the time, just with my pos ofc.
 
Back
Top