07.07.2010, 08:57
Код:
dcmd_teleporto(playerid, params[]) { new Float:cordx, Float:cordy, Float:cordz; if(sscanf(params, "fff",cordx, cordy, cordz)) return SendClientMessage(playerid, 0xFF0000FF, "[aiuto]: /teleporto [x][y][z]"); new string[64]; format(text, sizeof(text), "[cord]: %.4f %.4f %.4f",cordx, cordy, cordz); SendClientMessage(playerid, 0xFF9900AA, text); SetPlayerPos(playerid, cordx, cordy, cordz); return 1; }