23.01.2015, 12:29
Hi,
You need to make fast-optimization which means editing strings and make it lower, example from 256 to 128.
Check in what MAX_PLAYERS is redefined to use this.
If you are lucky enough you may have both files having the same size, in some cases .amx file is lower than .pwn
You need to make fast-optimization which means editing strings and make it lower, example from 256 to 128.
Check in what MAX_PLAYERS is redefined to use this.
pawn Код:
#undef MAX_PLAYERS
#define MAX_PLAYERS (30)

