11.11.2010, 13:44
pawn Код:
command(goto, playerid, params[])
{
new uID;
if(sscanf(params, "u", uID)) return SendClientMessage(playerid, COLOR, "Usage: /goto [ Id ]");
new Float: POS[3];
GetPlayerPos(uID, POS[0], POS[1], POS[2]);
SetPlayerPos(playerid, POS[0], POS[1], POS[2]);
return 1;
}