Combo Functions
Combo Functions and Commands
A combo (short for combination) is a combination of pre-programmed instructions which are executed in sequence. Just like the main section, commands within a combo are performed in the order they are written. You can run any code you can run in the main section within a combo such as calling functions or setting variables, although this is generally unnecessary and usually results in nothing more than a waste of stack memory and bytecode space.
A combo is ideal suited to setting the output of a button for a specific length of time which is done using the wait command, a command that is unique to combos and cannot be used elsewhere.
Just as with variables, a combos name can start with either an underscore ( _ ) or a letter and can be followed by any combination of letters, digits or underscores.
Function | Description | Zen | Plus |
Runs a combo | ✔️ | ✔️ | |
Checks if a combo is running | ✔️ | ✔️ | |
Stops a running combo | ✔️ | ✔️ | |
Restarts a running combo | ✔️ | ✔️ | |
Suspends (pauses) a combo | ✔️ | ✔️ | |
Checks if a combo is in the suspended state | ✔️ | ✔️ | |
keywords returning the current step | ✔️ | ❌ | |
the time left of the currently executed step | ✔️ | ❌ | |
Stops all combos | ✔️ | ❌ | |
Suspends (pauses) all combos | ✔️ | ❌ | |
Resumes the suspended combo or already running combo | ✔️ | ❌ | |
Resumes all suspended combos | ✔️ | ❌ |
combo_run
combo_run
does precisely what the name suggests and runs a combo. However, unlike the combo_restart command, it has no effect if the combo is currently running. It will only start a combo is it is not already running.
🔴Syntax
combo_run( <combo_name> );
⚪Parameters
<combo_name> : The name assigned to a combo 🔵Returns
Nothing
combo_running
combo_running
is a function which can be used in your code to check is a combo is running is not. If the combo named in its parameter is running, then it will return TRUE. If not, it will return FALSE.
🔴Syntax
combo_running( <combo_name>);
⚪Parameters
<combo_name> : The name assigned to a combo 🔵Returns
TRUE if the combo is currently running and FALSE if it is not.
combo_stop
combo_stop
does precisely what the name suggests and will stop a combo if it is running. As with combo_run, it has no effect if the combo is currently not running.
🔴Syntax
combo_stop( <combo_name> );
⚪Parameters
<combo_name> : The name assigned to a combo 🔵Returns
Nothing
combo_restart
combo_restart
will restart a running combo. If the combo started within its parameters is currently running, it will be restarted from the beginning. If the combo is not currently running, it will be run.
🔴Syntax
combo_restart( <combo_name> );
⚪Parameters
<combo_name> : The name assigned to a combo 🔵Returns
Nothing
combo_suspend
combo_suspend
command suspends (pauses) a combo from running .
🔴Syntax
combo_suspend( <combo_name> );
⚪Parameters
<combo_name> : The name assigned to a combo 🔵Returns
Nothing
combo_suspended
combo_suspended
Check to see if a combo is suspended.
🔴Syntax
combo_suspended( <combo_name> );
⚪Parameters
<combo_name> : Checks the name assigned to a combo if suspended 🔵Returns
Nothing
combo_current_step
combo_current_step
keywords returning the current step
combo_step_time_left
combo_step_time_left
Checks the time left of the currently executed step.
combo_stop_all
combo_stop_all
Stops all combos from running.
combo_suspend_all
combo_suspend_all
Suspends all combos that is running.
combo_resume
combo_resume
Will resume a combo if it is suspended or a running combo.
combo_resume_all
combo_resume_all
Will resume all combos if it is suspended or a running combos.
Combo Specific Commands
wait
wait
command instructs the Virtual Machine within the Cronus on how long the last set of commands should be executed for. The length of time they instruct the VM to execute the commands for is represented in milliseconds and can rand from 1ms to 32 767ms (That's 1 millisecond to just over 32 seconds).
The commands executed during the wait time are those placed between the current wait and the previous wait time, the current wait time and previous call command or the start of the combo, whichever comes first. As shown in the example below:
The wait command can only be used within a combo and must be at the first level of the combo block, it cannot be nested.
🔴Syntax
wait( <time> );
⚪Parameters
<time> : The length of time the last commands should be executed for represented in milliseconds ranging from 10 to 4000.
🔵Returns
Nothing
call
call
command can only be used in combos and pauses the current combo to execute the combo called. Once the combo has finished, the previous combo is resumed.
🔴 Syntax
call( <combo_name );
⚪ Parameters
<combo_name> : The name assigned to a combo
🔵 Returns
Nothing
Last updated