13.05.2014, 12:14
playerid represents an index for the array and when you do:
The valid indexes are 0-499. By using Killz[MAX_PLAYERS] for checking/settings values is going out of bounds because the last valid index is 499 and not 500.
pawn Код:
new Killz[MAX_PLAYERS];
// MAX_PLAYERS is 500

