Help Pls. - 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: Help Pls. (
/showthread.php?tid=654430)
Help Pls. -
TadePoleMG - 28.05.2018
This code can anyone help me.
PHP код:
public OnPlayerText(playerid, text[])
{
if(strval(text) == MathQuizTest && MathQuizTest != -1)
{
CorrectAnswer(playerid);
return 1;
}
else return 0;
return 1; // This line warning 225: unreachable code
}
Re: Help Pls. -
David (Sabljak) - 28.05.2018
PHP код:
public OnPlayerText(playerid, text[])
{
if(strval(text) == MathQuizTest && MathQuizTest != -1)
{
CorrectAnswer(playerid);
return 0;
}
return 1;
}