compiler crash - 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: compiler crash (
/showthread.php?tid=635103)
compiler crash -
Bussyman - 01.06.2017
Hi,
When i start to compile, compiler instantly crashes.. What should i do?
Re: compiler crash -
FaLLenGirL - 01.06.2017
I had this problem, and my problem it was that i don't have isNumeric stock.
Put this in your GM, and see if it is work, if u had already change it with this:
PHP код:
stock isNumeric( string[ ] )
{
for( new i = 0, j = strlen( string ); i < j; i ++ )
{
if( string[ i ] > '9' || string[ i ] < '0' )
return 0;
}
return 1;
}