01.08.2016, 14:07
This is incorrect:
The size of the array is 18 and that makes 0-17 as valid indexes. Your loops goes (backwards) from 18-1. Change to:
@[XST]O_x: "x" still starts at 18 and the first index will never be accessed.
pawn Код:
for(new x = 18; x != 0; x--)
pawn Код:
for(new x = sizeof RankInfo - 1; x != -1; x--)