What does this mean? - 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: What does this mean? (
/showthread.php?tid=105587)
What does this mean? -
Tyler_Idy - 30.10.2009
Код:
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
Header size: 2300 bytes
Code size: 149900 bytes
Data size: 137648 bytes
Stack/heap size: 16384 bytes; estimated max. usage=5076 cells (20304 bytes)
Total requirements: 306232 bytes
Re: What does this mean? -
Peter_Corneile - 30.10.2009
This means your script has too many functions and it has too much memory ..
Re: What does this mean? -
RenisiL - 30.10.2009
HM...
added gamemod
Код:
#pragma dynamic 8192
Read this
http://forum.sa-mp.com/index.php?topic=79810.0
and
http://forum.sa-mp.com/index.php?topic=78026.0
And (I assume) you're using strtok so you can't just make strings smaller since strtok returns MAX_STRING. That's why switch to dcmd+sscanf to get rid of those thousand 256 arrays
https://sampwiki.blast.hk/wiki/Fast_Commands
Re: What does this mean? -
SpiderPork - 30.10.2009
I recommend you start using zcmd, it's easier and even faster than dcmd:
http://forum.sa-mp.com/index.php?topic=116240.0
Re: What does this mean? -
Tyler_Idy - 02.11.2009
Could i possibly put it into sections ( its an admin script im making)
By sctions i mean:
Taking the jobs and putting them into one filterscript, gangs in other, houses and other stuff in another ect ect.....