I found the problem. This is weapon-config issue.
I changed
to
and it was solved.
weapon-config include?has a lot of arrays and variables with 1000 size.
MAX_PLAYERS?was 1000 as by default. That's what caused it.
I changed
Code:
#include <weapon-config>
#define YSI_NO_VERSION_CHECK
#undef MAX_PLAYERS
#define MAX_PLAYERS 200
to
Code:
#define YSI_NO_VERSION_CHECK
#undef MAX_PLAYERS
#define MAX_PLAYERS 200
#include <weapon-config>
and it was solved.
weapon-config include?has a lot of arrays and variables with 1000 size.
MAX_PLAYERS?was 1000 as by default. That's what caused it.