31.01.2019, 17:07
These two public functions have something in common:
`MinigameWinner` passed 51 as player parameter while the size of the faulty array is 50. Check how you declared `PlayerInfo` and `Minigamer_` arrays. If you want to know the line caused it, compile with -d3 flag.
pawn Код:
PlayerInfo[i][ActionID] = 0;
Minigamer_{i} = false;
// and
PlayerInfo[player][ActionID] = 0;
Minigamer_{player} = false;