24.10.2010, 08:33
can some explain me what is for break function in pawno ? becouse in wiki i dont understand thx
for(new something=0; something<somethingElse; something++)
{
if(something == 10)
{
//do what you want
break; //stops the loop if something reaches 10
}
}