04.08.2015, 19:17
What it's wrong there ![Huh?](images/smilies/confused.gif)
It give me unknown command ...
![Huh?](images/smilies/confused.gif)
Код HTML:
CMD:gotocar(playerid, params[]) { new carid, vid, Float:vPos[3][MAX_VEHICLES]; if((pInfo[playerid][pAdmin] < 4) && (pInfo[playerid][pHelper] < 4)) return SendClientMessage(playerid, FactColor[10], "You are not authorized to use that command !"); if(sscanf(params, "i", carid)) return SendClientMessage(playerid, FactColor[11], "USAGE: /gotocar [CarID]"); vid = GetPlayerVehicleID(playerid); GetVehiclePos(carid, vPos[0][carid], vPos[1][carid], vPos[2][carid]); if(IsPlayerInAnyVehicle(playerid)) SetVehiclePos(vid, vPos[0][carid]+3.0, vPos[1][carid]+3.0, vPos[2][carid]+0.5); else SetPlayerPos(vid, vPos[0][carid], vPos[1][carid], vPos[2][carid] + 2.5); SendClientMessage(playerid, FactColor[11], "You successfully performed that command !"); return 1; }