SA-MP Forums Archive
Error codes 008 and 029 - 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: Error codes 008 and 029 (/showthread.php?tid=318540)



Error codes 008 and 029 - sidney123 - 15.02.2012

Hi guys.

I have a problem with my script.
I've got error codes 008 on line 676 and error code 029 on line 676.
I don't know how to fix them or what the problems are.

Here is my script (line 669 - 678 )
Код:
669. // Berichten worden weergegeven bij het inloggen
670. new Tooltips[][] =
671. {
672. 	"DL:RP Admins zullen nooit om uw wachtwoord vragen!",
673. 	"Verveel je je? Neem een kijkje in de ~r~Paintball Arena~w~!",
674.	"Onthoud dat wij alles opslaan! We hebben zo ook een anti-hack systeem. Toch hacken? Niet slim dus!",
675.	
676. };
677. 
678. new vehicleMods[212][MAX_MODS][4];
It's dutch, sorry.

Thanks for helping me.


Re: Error codes 008 and 029 - Vince - 15.02.2012

Remove the trailing comma after your last message.


Re: Error codes 008 and 029 - Twisted_Insane - 15.02.2012

PHP код:
new Tooltips[][] =
 {
    
"DL:RP Admins zullen nooit om uw wachtwoord vragen!",
     
"Verveel je je? Neem een kijkje in de ~r~Paintball Arena~w~!",
    
"Onthoud dat wij alles opslaan! We hebben zo ook een anti-hack systeem. Toch hacken? Niet slim dus!"
    
 
};
 
 new 
vehicleMods[212][MAX_MODS][4];