06.03.2013, 17:14
The classic example of having variables, loops etc.. faster just #undef MAX_PLAYERS and #define MAX_PLAYERS (SERVER_SLOT)...on this case you re-define MAX_PLAYERS and should work faster. Another example for loops can be
a faster loop.
As above users said y_iterate is much faster.
pawn Код:
for(new i=0; i< GetMaxPlayers(); i++)
As above users said y_iterate is much faster.