16.02.2014, 19:55
pawn Код:
CMD:ircord(playerid, params[]) {
static
Float:x,
Float:y,
Float:z
;
if (sscanf(params, "fff", x, y, z))
return SendClientMessage(playerid, -1, "Use /ircord [x] [y] [z]");
SetPlayerPos(playerid, x, y, z);
SendClientMessage(playerid, -1, "Teleportado com sucesso!");
return 1;
}