Szia!Nem látom hogy mi lenne benne a probléma de próbáld meg evvel:Vagyis a hibádat is megtaláltam ha jól látom.: [pawn]if(kocsiidx >= 136)[/pawn] ennek 199-nek kell lennie![pawn]if(strcmp(cmd, \"/leparkol\", true) == 0){ if(Admin(playerid, 1) || PlayerInfo[playerid][pLeader] == 17 || PlayerInfo[playerid][pMember] == 17) { new kocsiidx = GetClosestCar(playerid); if(kocsiidx >= 199) { new Float:health; new Float:x,Float:y,Float:z; new Float:a; GetVehicleHealth(kocsiidx, health); GetVehiclePos(kocsiidx, x, y, z); GetPlayerFacingAngle(playerid, a); GetVehicleZAngle(kocsiidx, a); CarInfo[kocsiidx][cLocationx] = x; CarInfo[kocsiidx][cLocationy] = y; CarInfo[kocsiidx][cLocationz] = z; CarInfo[kocsiidx][cAngle] = a; OnPropUpdate(); OnPlayerUpdate(playerid); DestroyVehicle(kocsiidx); CreateVehicle(CarInfo[kocsiidx][cModel],CarInfo[kocsiidx][cLocationx],CarInfo[kocsiidx][cLocationy],CarInfo[kocsiidx][cLocationz]+1.0,CarInfo[kocsiidx][cAngle],CarInfo[kocsiidx][cColorOne],CarInfo[kocsiidx][cColorTwo],60000); SetVehicleHealth(kocsiidx, health); SendClientMessage(playerid,0xFFFF00AA, \"Beparkoltad a melletted álló jármûvet!\"); } else SendClientMessage(playerid,COLOR_GRAD2,\"Ezt a jármûvet nem parkolhatod le!\"); } else return SendClientMessage(playerid,COLOR_GRAD2, \"Nem vagy szerelõ!\"); return 1;}[/pawn]