• 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Pawn] [Solved] Why Game mode amx size has increased?
#9
I found the problem. This is weapon-config issue.



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.
  Reply


Messages In This Thread
RE: Why Game mode amx size has increased? - by Radical - 2021-05-13, 10:07 PM

Forum Jump: