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



CompuPhase - xir - 06.03.2011

where can i find the CompuPhase's pdf. where they show all the errors/warnings meaning?


Re: CompuPhase - Calgon - 06.03.2011

http://www.compuphase.com/pawn/Pawn_Language_Guide.pdf

Search next time.


Re: CompuPhase - xir - 06.03.2011

Thank you.

I got this error initialization data exceeds declared size

pawn Код:
new ItemNames[MAX_ITEMS][2] =
{
{"Test 1"},
{"Test 2"},
};
but I still get that error? Can you show me how you did it ?


Re: CompuPhase - WackoX - 06.03.2011

Remove the last comma (,)
And "Test 1" is longer then 2 characters.


Re: CompuPhase - xir - 06.03.2011

Thanks WackoX, I understand it now