(578) : warning 225: unreachable code
if(!strcmp(cmd, "/kick")) { { if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid,0xFFFFFFFF,"You are not an admin !"); new targetid, reason[64], string[128]; if(sscanf(params, "uz", targetid, reason)) return SendClientMessage(playerid, 0xFFFFFFFF, "Usage: /kick [playerid/partofname] [reason]"); if(!IsPlayerConnected(targetid)) return SendClientMessage(playerid, 0xFFFFFFFF, "Player not connected!"); else { new pName[128]; GetPlayerName(targetid,pName,128); format(string, sizeof(string), "%s have been Muted By an Admin ! Reason: %s", pName, reason); SendClientMessageToAll(0xA10000AA,string); format(string, sizeof(string), "You have been kicked! Reason: %s", reason); SendClientMessage(targetid,0xA10000AA,string); Kick(targetid); } return 1; } return 1; }
if(!strcmp(cmd, "/kick"))
{
{
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid,0xFFFFFFFF,"You are not an admin !");
new targetid, reason[64], string[128];
if(sscanf(params, "uz", targetid, reason)) return SendClientMessage(playerid, 0xFFFFFFFF, "Usage: /kick [playerid/partofname] [reason]");
if(!IsPlayerConnected(targetid)) return SendClientMessage(playerid, 0xFFFFFFFF, "Player not connected!");
else
{
new pName[128];
GetPlayerName(targetid,pName,128);
format(string, sizeof(string), "%s have been Muted By an Admin ! Reason: %s", pName, reason);
SendClientMessageToAll(0xA10000AA,string);
format(string, sizeof(string), "You have been kicked! Reason: %s", reason);
SendClientMessage(targetid,0xA10000AA,string);
Kick(targetid);
}
}
return 1;
}
The error means that the piece of code will never possibly be reached. The last return in that code can never be reached, because there is no logical path to where it can be reached, the code is always stopped before it. So either remove it, or else re-structure the code. Additionally you have two un-needed brackets in the snippet.
|
There really was no reed to write all that... Lol.
@OP : If you use "else", you shouldn't really be using return 1; at the end, because ELSE includes EVERYTHING other than the IF earlier stated. |
pawn Код:
|
if(!strcmp(cmd, "/kick")
{
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid,0xFFFFFFFF,"You are not an admin !");
new targetid, reason[64], string[128];
if(sscanf(params, "uz", targetid, reason)) return SendClientMessage(playerid, 0xFFFFFFFF, "Usage: /kick [playerid/partofname] [reason]");
if(!IsPlayerConnected(targetid))
{
SendClientMessage(playerid,0xFFFFFFFF,"Player not connected!");
}
else
{
new pName[128];
GetPlayerName(targetid,pName,128);
format(string, sizeof(string), "%s have been Muted By an Admin ! Reason: %s", pName, reason);
SendClientMessageToAll(0xA10000AA,string);
format(string, sizeof(string), "You have been kicked! Reason: %s", reason);
SendClientMessage(targetid,0xA10000AA,string);
Kick(targetid);
}
return 1;
}
Why not? Obviously he doesn't know what the error means, so instead of providing him with a quick fix, why not explain to him what the error means, and then he can fix it himself and learn something new? Then he won't have to rely on other people to solve it for him in the future if it happens again.
|