25.08.2015, 22:51
In your case compiler says "your stack/heap size is 16384 bytes, and your code may use 16276 bytes of heap/stack". It appears when stack/heap usage of your mod is higher or close to limit. Sometimes it may say "unknown, due to recursion".
You may search how amx machine works or I can tell you something I know about it.
I'd suggest you to set a bigger stack/heap size with #pragma dynamic n (where n is size in cells, and 1 cell = 4 bytes). Default value is 4096 cells, which is 16384 bytes (so as compiler said).
You may also look how to lower stack and heap usage.
If there's not enough space in stach/heap, you probably will meet stack overflow / heap underflow runtime errors, so it can't be just ignored.
You may search how amx machine works or I can tell you something I know about it.
I'd suggest you to set a bigger stack/heap size with #pragma dynamic n (where n is size in cells, and 1 cell = 4 bytes). Default value is 4096 cells, which is 16384 bytes (so as compiler said).
You may also look how to lower stack and heap usage.
If there's not enough space in stach/heap, you probably will meet stack overflow / heap underflow runtime errors, so it can't be just ignored.