SA-MP Forums Archive
Maths result - 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: Maths result (/showthread.php?tid=297771)



Maths result - Kostas' - 17.11.2011

Fixed


Re: Maths result - Miguel - 17.11.2011

MathsResult is an integer, you can't compare an integer to a string (text from OnPlayerText). To compare them, convert the string to an integer with strval and compare:
pawn Код:
if(strval(text) == MathsResult) // strval returns an intenger which CAN be compared to MathsResult, another integer.
strcmp is used to compare strings only...


Re: Maths result - Kostas' - 17.11.2011

Thank you Miguel for the information and help!