Hey I edited a gamemode and added a command /delveh to delete vehicles. I just need that command. I went down to /veh command and right under I puted the /delveh command this is the code. When I'm trying to compile, apears the error with "Don't send and Send error" What I done wrong or what's the problem?
Код:
if(strcmp(cmd, "/veh", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if (PlayerInfo[playerid][pAdmin] < 9000)
{
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);
}
return 1;
}
if (!strcmp(cmd, "/delveh", true))
{
if(IsPlayerConnected(playerid))
{
if (PlayerInfo[playerid][pAdmin] < 9000)
{
SendClientMessage(playerid, COLOR_GRAD1, " you are not authorized to use that command!");
return 1;
}
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
if (!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, ORANGE, "USAGE: /delveh [vehicle id]");
PlayerDelVeh[playerid] = GetPlayerVehicleID(playerid);
ShowPlayerDialog(playerid, DIALOG_TYPE_DELVEH, DIALOG_STYLE_MSGBOX, "You are about to delete the vehicle you are currently in...", "Are you sure?", "Yes, delete", "No");
return 1;
}
new vehicleid = strval(tmp);
PlayerDelVeh[playerid] = vehicleid;
ShowPlayerDialog(playerid, DIALOG_TYPE_DELVEH, DIALOG_STYLE_MSGBOX, "You are about to delete a vehicle...", "Are you sure?", "Yes, delete", "No");
}
else SendClientMessage(playerid, RED, "You're not an admin with the required level.");
return 1;
}