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=594395)



warning 225: unreachable code - rojrocks - 17.11.2015

code:-
Quote:

37public OnPlayerConnect(playerid)
38{
39 GameTextForPlayer(playerid,"~w~RRMG",5000,5);
40 return 1;
41 GameTextForPlayer(playerid,"~w~Please use /register",5000,5);
42 return 1;
43}

error:-
Quote:

(41) : warning 225: unreachable code

plz help


Re: warning 225: unreachable code - Karan007 - 17.11.2015

PHP код:
public OnPlayerConnect(playerid)
{
    
GameTextForPlayer(playerid,"~w~[]RRMG[] Please use /register",5000,5);
    return 
1;

You can't use return 1; and gametext 2 times when the player connect.


Re: warning 225: unreachable code - rojrocks - 17.11.2015

thanks for your help it solved it


Re: warning 225: unreachable code - Karan007 - 17.11.2015

Quote:
Originally Posted by rojrocks
Посмотреть сообщение
thanks for your help it solved it
No problem.


Re: warning 225: unreachable code - rojrocks - 17.11.2015

+rep