How to delete this? - 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: How to delete this? (
/showthread.php?tid=242704)
How to delete this? -
SkizzoTrick - 20.03.2011
Since it is related to Pawno,ill ask it here:
Header size: 8720 bytes
Code size: 1273748 bytes
Data size: 2827468 bytes
Stack/heap size: 16384 bytes; estimated max. usage=4892 cells (19568 bytes)
Total requirements: 4126320 bytes
This is what the compiler shows me after every compile
How to delete this?Its annoying already.
Re: How to delete this? -
Zh3r0 - 20.03.2011
If doesn't work, add more!
Re: How to delete this? -
Kwarde - 20.03.2011
OMG zh3r0 that sux, telling the compiler to hide that.
SkizzoTrick, you have too big arrays (overused space).
eg.
pawn Код:
new string[128];
format(string, 128, "Hi");
Simple example: 'Hi' contains 2 characters, so the string[128] should be string[2].
And if you have for simple SendClientMessage 256 strings, change thm to 128