Guides
Parameters
Optional parameters
example_function(string = "Hello World", color = "^1")
{
iPrintLn(color, string);
}Usage
init(color = (1,1,1), value = 100, type, arg1, arg2, arg3 = true)
{
//New: Break out of any number of loops
while(true)
{
while(true)
{
for(;;)
{
break NUMBER_HERE;
wait .05;
}
IPrintLn( "break or break 1 and lower will take you here" );
wait 5;
}
IPrintLn( "break 2 will take you here" );
wait 5;
}
IPrintLn( "break 3 and greater will take you here" );
//New: Continue out of any number of loops
while(true)
{
IPrintLn( "continue 3 and greater will take you here" );
while(true)
{
IPrintLn( "continue 2 will take you here" );
for(;;)
{
IPrintLn( "continue or continue 1 and lower will take you here" );
wait .05;
continue NUMBER_HERE;
}
wait 5;
}
wait 5;
}
}Last updated on