SA-MP Forums Archive
Warning 225: 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)
+--- Thread: Warning 225: unreachable code. (/showthread.php?tid=286368)



Warning 225: unreachable code. - Macros50 - 28.09.2011

I compile my gamemode and pawno get me this error... Warning 225: unreachable code.
Here is the code:
Код:
if(dialogid == KickBox)
{
	if(response)
	{
			SendClientMessage(playerid,COLORE_ROSSO, "Thanks to accepted the rules!");
		}
		else
		{
			SendClientMessage(playerid,COLORE_ROSSO, "Fuckoff bitch");
			}
			Kick(playerid);
			}
		return 1;
		}
Help


Re: Warning 225: unreachable code. - aRoach - 28.09.2011

pawn Код:
if(dialogid == KickBox)
{
    if(response)
    {
        SendClientMessage(playerid,COLORE_ROSSO, "Thanks to accepted the rules!");
    }
    else
    {
        SendClientMessage(playerid,COLORE_ROSSO, "Fuckoff bitch");
        Kick(playerid);
    }
    return 1;
}