La inceputul GM adaugi new CreatedCars[100]; new CreatedCar = 0; -Sub linia public OnPlayerCommandText Adaugi: [pawn]if(strcmp(cmd, "/veh", true) == 0) { if(IsPlayerConnected(playerid)) { if (PlayerInfo[playerid][pAdmin] < 4) { SendClientMessage(playerid, COLOR_GRAD1, " you are not authorized to use that command!"); return 1; } tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]"); return 1; } new car; car = strval(tmp); if(car < 400 || car > 611) { SendClientMessage(playerid, COLOR_GREY, " Vehicle Number can't be below 400 or above 611 !"); return 1; } tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]"); return 1; } new color1; color1 = strval(tmp); if(color1 < 0 || color1 > 126) { SendClientMessage(playerid, COLOR_GREY, " Color Number can't be below 0 or above 126 !"); return 1; } tmp = strtok(cmdtext, idx); if(!strlen(tmp)) { SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]"); return 1; } new color2; color2 = strval(tmp); if(color2 < 0 || color2 > 126) { SendClientMessage(playerid, COLOR_GREY, " Color Number can't be below 0 or above 126 !"); return 1; } new Float:X,Float:Y,Float:Z; GetPlayerPos(playerid, X,Y,Z); new carid = CreateVehicle(car, X,Y,Z, 0.0, color1, color2, 60000); CreatedCars[CreatedCar] = carid; CreatedCar ++; format(string, sizeof(string), " Vehicle %d spawned.", carid); SendClientMessage(playerid, COLOR_GREY, string); GetPlayerName(playerid, sendername, sizeof(sendername));[/pawn] * Unde ii : if (PlayerInfo[playerid][pAdmin] < 4) - Inloc de 4 adaugi levelul minim al adminului care poate folosi comanda sau daca vrei ca toti playeri sa poata folosi comanda stergi linia Iar /skin :(tot sub linia OnPlayerCommandText ) [pawn] if (strcmp("/skin", cmd, true) == 0) { if (PlayerInfo[playerid][pAdmin] >= 1) { new idskin; tmp = strtok(cmdtext, idx); if(!strlen(tmp)) return SendClientMessage(playerid, COLOR_GREY, "USAGE: /skin [skinid]"); idskin = strval(tmp); if(idskin >= 0 && idskin <= 299) { SetPlayerSkin(playerid,idskin); format(string, 256, " your skinid is now %d", idskin); SendClientMessage(playerid, COLOR_GREY, string); } else if(idskin < 0 || idskin > 299) { SendClientMessage(playerid, COLOR_GREY, " don't go under 1 and over 299."); } return 1; } }[/pawn] *if (PlayerInfo[playerid][pAdmin] >= 1) : TOT asa inloc de 1 pui lvl min al adminului care poate sa foloseasca cmd