29.03.2019, 16:45
simply change
to
pawn Код:
if(i % 4 == 0) // If 'i' is a multiple of 4
pawn Код:
if(i % 4 == 0 && i != 0) // If 'i' is a multiple of 4 and 'i' is not 0