11.03.2012, 11:38
Did you copy this from somewhere? This is your code:
It tells the script, that it should call the function AS long, as i is smaller then 5 times. That means:
0, 1, 2, 3, 4 = 5 TIMES
If you want it for one time, it should be like this:
pawn Код:
for(new i; i < [B]5[/B]; i++)
0, 1, 2, 3, 4 = 5 TIMES
If you want it for one time, it should be like this:
pawn Код:
for(new i; i < 1; i++)