How is this an unreachable code??
#2

Unreachable code is when the script says that a certain piece of code is impossible to get to.

pawn Код:
public OnPlayerConnect(playerid)
{
if(gTeam[playerid] == 1)
{
   SendClientMessage(playerid, color, "Welcome");
   return 1;
}
else
{
   SendClientMessage(playerid, color, "Your not team 1");
   return 1;
}
return 1;
}
The last return is unreachable. Since the else statement HAS to happen and it has a return in it.

From what it looks like in your code, is your checking to see if there admin level is Greater then 3, and then return the function. I don't see any other conditions met, which means the code underneath it can't be reached.
Reply


Messages In This Thread
How is this an unreachable code?? - by Globe2009 - 09.11.2009, 23:45
Re: How is this an unreachable code?? - by retart441 - 09.11.2009, 23:54
Re: How is this an unreachable code?? - by Globe2009 - 10.11.2009, 00:19
Re: How is this an unreachable code?? - by retart441 - 10.11.2009, 00:21
Re: How is this an unreachable code?? - by Globe2009 - 10.11.2009, 00:27

Forum Jump:


Users browsing this thread: 1 Guest(s)