SA-MP Forums Archive
I keep getting this error - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Server (https://sampforum.blast.hk/forumdisplay.php?fid=6)
+--- Forum: Server Support (https://sampforum.blast.hk/forumdisplay.php?fid=19)
+--- Thread: I keep getting this error (/showthread.php?tid=335682)



I keep getting this error - tiernantheman - 19.04.2012

Solved


Re: I keep getting this error - Thomas. - 19.04.2012

You are not closing the function call.
The compiler expects another parameter when it finds a comma, but there is none.

pawn Код:
CreateExplosion(RandomFire_X+random(3),RandomFire_Y-random(3),RandomFire_Z+random(1), 1, 8.0);
CreateExplosion(RandomFire_X+random(3),RandomFire_Y+random(3),RandomFire_Z+random(1), 1, 8.0);



Re: I keep getting this error - Dude_Lebowski - 19.04.2012

solved ?