23.02.2015, 09:23
In Pawn array indices start from 0 and go to n-1 where n is the size of the array. You're looping through elements from 1 to n, so you're essentially skipping the first element and reading a non-existent element at index n in the end of the loop, which is what crashdetect is trying to tell you.