04.02.2012, 07:50
PHP код:
CMD:getcveh(playerid,params[])
{
if(P_Var[playerid][p_Adminlevel] == 0) return SendClientMessage(playerid,C_GRAD,"You are not authorized to use this command!");
new id,Float: Pos[3];
if(sscanf(params,"u",id)) return SendClientMessage(playerid, C_GREY, "Format: /Getveh [vehicle id]");
GetPlayerPos(playerid,Pos[0],Pos[1],Pos[2]);
SetVehiclePos(CreatedVehicles[id],Pos[0],Pos[1],Pos[2]);
return 1;
}