Das ist der befehl
if(strcmp(cmd, "/scar", true)==0)
{
if(IsPlayerConnected(playerid)
{
if(PlayerInfo[playerid][pSupporter] < 1)
{
SendClientMessage(playerid, COLOR_GRAD1, "Du bist nicht befugt");
return 1;
}
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "Benutze /scar [Car ID = 560] [COLOR 1] [COLOR 2]");
}
new car;
car = strval(tmp);
if(car < 560 || car > 560)
{
SendClientMessage(playerid, COLOR_GRAD2, "Benutze /scar [Car ID = 560] [COLOR 1] [COLOR 2]");
}
new color1;
color1 = strval(tmp);
if(color1 < 0 || color1 > 126)
{
SendClientMessage(playerid, COLOR_GRAD2, "Benutze: /veh [carid] [color1] [color2]");
return 1;
}
new color2;
color2 = strval(tmp);
if(color2 < 0 || color2 > 126) { SendClientMessage(playerid, COLOR_GREY, " Nicht weniger als 0 oder höher als 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++;
Gas[carid] = GetGasMax(car);
format(string, sizeof(string), " Auto %d gespawned.", carid);
SendClientMessage(playerid, COLOR_GREY, string);
}
return 1;
}