04.07.2015, 09:59
pawn Код:
for(new i = 0,j = GetPlayerPoolSize();i < j;i++)
{
}
Код:
for(new i = 0,j = GetPlayerPoolSize();i <= j;i++) { }
One thing i would really suggest people to limit defines (constants) to their exact usage limit. That would really save the memory and the output size.
For example: You can save alot of memory by just redefining MAX_PLAYERS.
pawn Код:
#undef MAX_PLAYERS
#define MAX_PLAYERS 100