1.Daca nu ai rabdare sa iti raspunda cineva nu te voi mai ajuta, noi nu suntem roboti sa stam 24/24 dupa tine/altii. 2. Incearca asa [pawn]CMD:goto(playerid, params[]) { if(PlayerInfo[playerid][pAdmin] >= 1) { new ID; new Str[64]; if(sscanf(params, "u", ID)) { SendClientMessage(playerid, COLOR_GREY, "USAGE: /goto [playerid]"); return 1; } if(!IsPlayerConnected(ID)) { SendClientMessage(playerid, COLOR_GREY, "Player is not connected!"); return 1; } else { new Float:x, Float:y, Float:z; GetPlayerPos(ID, x, y, z); SetPlayerPos(playerid, x+1, y+1, z); return 1; } } else { SendClientMessage(playerid, COLOR_GREY, "You are not authorized to use that command!"); } return 1; }[/pawn]