09.09.2014, 08:18
You're using the do-while loop wrong.
The syntax is
If you want to increment "id" each time the loop is executed, you should put in the "do" block.
The syntax is
pawn Код:
do
{
}
while(some_statement); // not the semicolon at the end which you are lacking.

