I am not really familiair with this source yet, however the one who knows where the configuration files are, could try the following:
For player loops, never use default for-loops. Use foreach
Also, undefine MAX_PLAYERS and define it with the current maximum player slots.
(redefine MAX_PLAYERS first)
Please, tell me the results after this has been changed.
Edit: This is not related to the streamer, but I am not sure if the Streamer plugin is actually causing this.
For player loops, never use default for-loops. Use foreach
Code:
#undef foreach
#define foreach(%1,%2) \
for (new %2 = 0, %1 = 0; %1 < MAX_PLAYERS; %1++)Also, undefine MAX_PLAYERS and define it with the current maximum player slots.
Code:
#undef MAX_PLAYERS
#define MAX_PLAYERS 124Please, tell me the results after this has been changed.
Edit: This is not related to the streamer, but I am not sure if the Streamer plugin is actually causing this.