02.08.2014, 02:49
hi all...
i have a question here. if i make a loop inside of loop, and then i break the second loop. will it stop the first loop?
i meant like this
will it stop the "while" loop? or only stop the "for" loop?
i have a question here. if i make a loop inside of loop, and then i break the second loop. will it stop the first loop?
i meant like this
pawn Код:
new i;
while(i < 100)
{
for(new c; c < 20; c++)
{
if(player[c] == 1) break;
}
}