01.01.2018, 14:20
PHP код:
CMD:gotoxyz(playerid, params[])
{
new x, y, z;
if(sscanf(params, "iii", x, y, z)) return SendClientMessage(playerid, 0xFF0000FF, "Usage: /goto [x] [y] [z]");
SetPlayerPos(playerid, x, y, z);
return 1;
}