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



Compiler output - Nonameman - 26.01.2011

Hey!

I have this when I compile my gamemode:
Код:
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase

Header size:           6420 bytes
Code size:           254988 bytes
Data size:          1108992 bytes
Stack/heap size:      16384 bytes; estimated max. usage=5016 cells (20064 bytes)
Total requirements: 1386784 bytes
What's that? And why is it appears now? I couldn't see it before.

Thanks
Nonameman


Re: Compiler output - Calgon - 26.01.2011

You have exceeded the set size of memory assigned to the stack/heap.

https://sampwiki.blast.hk/wiki/Keywords:...ives#.23pragma

Try increase the size by using #pragma dynamic <newsize> - alternatively, consider efficiency while scripting.


Re: Compiler output - Nonameman - 26.01.2011

Quote:
Originally Posted by Calgon
Посмотреть сообщение
You have exceeded the set size of memory assigned to the stack/heap.

https://sampwiki.blast.hk/wiki/Keywords:...ives#.23pragma

Try increase the size by using #pragma dynamic <newsize> - alternatively, consider efficiency while scripting.
Thanks. Can I have problems with the server after I modify the limit of the memory size?