SA-MP Forums Archive
Tag Mismatch - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Tag Mismatch (/showthread.php?tid=162468)



Tag Mismatch - Blt950 - 23.07.2010

Hey, I got a tag mismatch at this line

pawn Код:
new Float:vehTrunkArmour[MAX_VEHICLES] = 0;
The things the line is used to works. But does anyone know how to just make that mismatch dissipare?
I prefer to have no warnings or errors while having complied :P


Re: Tag Mismatch - dice7 - 23.07.2010

new Float:vehTrunkArmour[MAX_VEHICLES] = 0.0;

And arrays are filed with zeros already when you declare them


Re: Tag Mismatch - iJumbo - 23.07.2010

vrong topic sorry


Re: Tag Mismatch - Blt950 - 23.07.2010

Quote:
Originally Posted by dice7
Посмотреть сообщение
new Float:vehTrunkArmour[MAX_VEHICLES] = 0.0;

And arrays are filed with zeros already when you declare them
Worked, thanks for quick answers.

And yeah, I know that they are filled with 0 as default. I'm just used to write it :3

Problem Solved