SA-MP Forums Archive
Unreachable code - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Unreachable code (/showthread.php?tid=168198)



Unreachable code - FireCat - 15.08.2010

today i went on a "fixing spree" i had round 37 warnings and i was fixing them and im down to 13 and i cant get here

Код:
C:\Users\james\Desktop\serverrrrr\gamemodes\Gamemode.pwn(648) : warning 225: unreachable code
help!!

PHP код:
       else return SendClientMessage(playeridCOLOR_RED"Unknown Command. Try /help");
        return 
1//line 648

_______________________
[GDZ]leader



Re: Unreachable code - iggy1 - 15.08.2010

Try deleting return 1;


Re: Unreachable code - 0ne - 15.08.2010

if you return SendClientMessage in the first place, you don't need an extra
pawn Код:
return 1;
that's why it gives an unreachable code, because it can't reach RETURN 1; since you returned sendclientmessage.