24.12.2013, 11:33
It exceeds the bounds. MAX_PLAYERS was defined as 500 so the valid indexes are 0-499.
In a loop (most likely) in TaxiFare, you may have a check like that (an example):
That's incorrect and it should be:
In a loop (most likely) in TaxiFare, you may have a check like that (an example):
pawn Код:
for(new i = 0; i <= MAX_PLAYERS; i++)
// It's been executed 501 times.
pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++)
// It's been executed 500 times - just like MAX_PLAYERS.