

Login Issues
Forgot password?Activate Issues
Account activation email not received? Wrong account activation email used?Other Problems?
Contact Support - Help Center Get help on the UGX Discord. Join it now!i = 60; for( ;; ) { wait 1; i--; if ( i == 0 ) break; } // Continue Function i = 60; while( i > 0 ) { wait 1; i--; }
timer_init(time, type, value, variable)
{
if(isdefined(time) && isdefined(type) && isdefined(value) )
{
wait(time);
switch(type)
{
case "notify":
level notify(value);
break;
case "flag":
flag_set(value);
break;
case "variable":
variable = value;
break;
}
}
else
{
iprintln("One of the following is not defined: Time, Type, Value!");
}
}timer_init(20, "notify", "door_open")