22.05.2017, 13:56
You shouldn't initialize count with -1, but with zero.
Then, switch these two lines:
Otherwise count will always be 1 less than there are Skins in the Array.
Also replace
with
However that only causes the last Skin to be skipped, not 11 pages. But I didn't notice anything else..
Then, switch these two lines:
pawn Code:
count++;
Skin[count] = i;
Also replace
pawn Code:
if(count != -1)
pawn Code:
if(count != 0)