13.11.2011, 00:29
Remove this from all code anywhere in your for statements:
Returning will break the loop and end the execution of the function. You can use 'break;' instead to break a for loop without preventing the function from continuing from executing. So, either, remove 'return 1;' or replace it with 'break;'.
pawn Код:
return 1;