public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp("/exit", cmdtext, true, 10) == 0)
{
if(IsPlayerConnected(playerid))
{
if(IsPlayerInAnyVehicle(playerid))
{
RemovePlayerFromVehicle(playerid);
SCM(playerid,0xFFFF00AA,"* You left the vehicle.");
TogglePlayerControllable(playerid,1);
}else{
SCM(playerid,0xFFFF00AA,"* You are not in a vehicle!");
}
}
return 1;
}
if(strcmp("/afill", cmdtext, true, 11) == 0)
IsPlayerAdmin(playerid);
{
if(IsPlayerInAnyVehicle(playerid))
{
new VID = GetPlayerVehicleID(playerid);
if(Vgas[VID] < 100)
{
ShowMenuForPlayer(Gas,playerid);
}else{
SCM(playerid,0xFFFF00AA,"* Your vehicle is full!");
}
}else{
SCM(playerid,0xFFFF00AA,"* You are not in a vehicle!");
}
return 1;
}
if(strcmp("/fill", cmdtext, true, 10) == 0) // <-------------- this is the line
{
if(IsAtGasStation(playerid))
{
if(IsPlayerInAnyVehicle(playerid))
{
new VID = GetPlayerVehicleID(playerid);
if(Vgas[VID] < 100)
{
ShowMenuForPlayer(Gas,playerid);
}else{
SCM(playerid,0xFFFF00AA,"* Your vehicle is full!");
}
}else{
SCM(playerid,0xFFFF00AA,"* You are not in a vehicle!");
}
}else{
SCM(playerid,0xFFFF00AA,"* You are not at a gas station!");
}
return 1;
}
return 0;
}
C:\Users\Marino Varesio\Desktop\zombie outbreak\filterscripts\fuelsystem.pwn(90) : warning 225: unreachable code
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Warning.
if(strcmp(cmdtext, "/fill", true) == 0)
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp("/exit", cmdtext, true)
{
if(IsPlayerConnected(playerid))
{
if(IsPlayerInAnyVehicle(playerid))
{
RemovePlayerFromVehicle(playerid);
SCM(playerid,0xFFFF00AA,"* You left the vehicle.");
TogglePlayerControllable(playerid,1);
}
else SCM(playerid,0xFFFF00AA,"* You are not in a vehicle!");
}
return 1;
}
if(strcmp("/afill", cmdtext, true)
{
if(IsPlayerAdmin(playerid))
{
if(IsPlayerInAnyVehicle(playerid))
{
new VID = GetPlayerVehicleID(playerid);
if(Vgas[VID] < 100) ShowMenuForPlayer(Gas,playerid);
else SCM(playerid, 0xFFFF00AA, "* Your vehicle is full!");
}
else SCM(playerid,0xFFFF00AA,"* You are not in a vehicle!");
}
return 1;
}
if(strcmp("/fill", cmdtext, true) // <-------------- this is the line
{
if(IsAtGasStation(playerid))
{
if(IsPlayerInAnyVehicle(playerid))
{
new VID = GetPlayerVehicleID(playerid);
if(Vgas[VID] < 100) ShowMenuForPlayer(Gas,playerid);
else SCM(playerid,0xFFFF00AA,"* Your vehicle is full!");
}
else SCM(playerid,0xFFFF00AA,"* You are not in a vehicle!");
}
else SCM(playerid,0xFFFF00AA,"* You are not at a gas station!");
return 1;
}
return 0;
}
if(!strcmp(cmdtext,"/fill", true, 10))
I could be wrong, but having good indentation skills are key to being a successful scripter.
Try this: pawn Код:
|
Many people do not realize how important indentation is. I've talked to people who go about w/o indenting. I would find it confusing as hell. I OVER indent so i don't get confused
|
}
else
{
print("Just An Example");
}
}
else print("Just An Example");