19.06.2014, 14:10
Replace:
with:
and don't use [i+1], [i+2] and [i+3] because it exceeds the bounds.
pawn Код:
for(new i = 0; i <= 256; i++)
pawn Код:
for(new i = 0, j = strlen(text); i < j; i++)

