24.06.2011, 05:00
I get the error on this code:
At every else { }
PHP код:
if(strcmp(cmd,"/csrepair",true)==)
{
if(IsPlayerInRangeOfPoint(playerid,1,624.725952, -22.463268, 1002.037719))
{
if(PlayerInfo[playerid][pJob] == 7 && JobDuty[playerid] == 0)
{
new vehid = GetPlayerVehicleID(playerid);
if(vehid && PlayerInfo[playerid][pJob] == 7 && JobDuty[playerid] == 1)
{
RepairVehicle(vehid);
format(string, sizeof(string), "* %s uses his utilities to repair the vehicle.", sendername);
ProxDetector(10.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
return 1;
}
else {
SendClientMessage(playerid,COLOR_YELLOW,"[Chop Shop] You aren't in a Vehicle to repair!");
return 1;
}
else {
SendClientMessage(playerid,COLOR_YELLOW,"[Chop Shop] You are not On-Duty at the Chop Shop!");
return 1;
}
else {
SendClientMessage(playerid,COLOR_YELLOW,"[Chop Shop] You aren't at the Repair Spot!");
return 1;
}
}
}
return 1;
}