25.12.2017, 13:06
PHP код:
#include <a_samp>
#include <izcmd>
#include <sscanf2>
CMD:tele(playerid, params[])
{
new Float:x, Float:y, Float:z;
if(sscanf(params, "fff", x, y, z))return SendClientMessage(playerid, 0xFF0000FF, "Usage: /tele [X Pos] [Y Pos] [Z Pos]");
SetPlayerPos(playerid, x, y, z);
return 1;
}