28.05.2018, 14:13
Hi
There is a php code and i wanted to know that can i add return 0 or not or whatever to do.
GOOD?
Or This is GOOD?
Or This is GOOD?
Suggest guys which right otherwise tell me how to make right.
Thank You
There is a php code and i wanted to know that can i add return 0 or not or whatever to do.
GOOD?
PHP код:
//==============================================================================
// Math Quiz Answer
//==============================================================================
if(strval(text) == MathQuizTest && MathQuizTest != -1)
{
CorrectAnswer(playerid);
return 0;
}
PHP код:
//==============================================================================
// Math Quiz Answer
//==============================================================================
if(strval(text) == MathQuizTest && MathQuizTest != -1)
{
CorrectAnswer(playerid);
}
PHP код:
//==============================================================================
// Math Quiz Answer
//==============================================================================
if(strval(text) == MathQuizTest && MathQuizTest != -1) CorrectAnswer(playerid);
Thank You