15.11.2012, 04:07
break; just jumps out of a loop
pawn Код:
new id;
for(new i=0; i<10; i++) {
if(Something[i] == 1) {
id = i;
break; // calling break; won't stop the function
}
}
// the code will just jump to here.

