Skip to main content

Control Flow

Call Script

Call one of your custom scripts. Once you have chosen a script you will be able to hook up any parameters required.

References
/docs/scripting/custom-scripts

Call Script
Script
My Custom Script
  • Script: The script to run.

If Actor At Position

Conditionally run part of the script if an actor is at a specified position.

If Actor At Position
Actor
Actor 1
X
0
Y
0
True
Add Event
Else
  • Actor: The actor you want to check.
  • X: The horizontal position.
  • Y: The vertical position.
  • True: The script to run if the condition is true.
  • False: The script to run if the condition is false.

If Actor Distance From Actor

Conditionally run part of the script if an actor is within a certain distance of another actor.

If Actor Distance From Actor
Actor
Player
Comparison
<=
Distance
0
From
Actor 1
True
Add Event
Else
  • Actor: The actor you want to check.
  • Comparison: The comparison operator to use e.g. 'Less Than' or 'Greater Than'.
  • Distance: The distance value.
  • From: The actor to compare distance with.
  • True: The script to run if the condition is true.
  • False: The script to run if the condition is false.

If Actor Facing Direction

Conditionally run part of the script if an actor is facing in a specified direction.

If Actor Facing Direction
Actor
Actor 1
Direction
True
Add Event
Else
  • Actor: The actor you want to check.
  • Direction: The actor direction.
  • True: The script to run if the condition is true.
  • False: The script to run if the condition is false.

If Actor Relative To Actor

Conditionally run part of the script based on the position of one actor relative to another.

If Actor Relative To Actor
Actor
Player
Comparison
Is Above
Other Actor
Actor 1
True
Add Event
Else
  • Actor: The actor you want to check.
  • Comparison: The relative position comparison to use e.g. 'Is Above' or 'Is Below'.
  • Other Actor: The actor to compare position with.
  • True: The script to run if the condition is true.
  • False: The script to run if the condition is false.

If Color Mode Is Available

Conditionally run part of the script if the game is being played on a device or emulator that supports color games.

If Color Mode Is Available
True
Add Event
Else
  • True: The script to run if the condition is true.
  • False: The script to run if the condition is false.

If Game Data Saved

Conditionally run part of the script if save data is present within the specified save slot.

If Game Data Saved
Save Slot
Slot 1
Slot 2
Slot 3
Run if player has saved a game.
True
Add Event
Else
  • Save Slot: The save slot to use.
  • True: The script to run if the condition is true.
  • False: The script to run if the condition is false.

If GBA Mode Is Available

Conditionally run part of the script if the game is being played on a device or emulator that supports GBA games.

If GBA Mode Is Available
True
Add Event
Else
  • True: The script to run if the condition is true.
  • False: The script to run if the condition is false.

If Joypad Input Held

Conditionally run part of the script if the specified joypad button is currently pressed. Will not wait for user input and will only execute once, if you wish to run a script every time a button is pressed use Attach Script To Button instead.

References
/docs/scripting/script-glossary/input#attach-script-to-button

If Joypad Input Held
Any of
A
B
Start
Select
True
Add Event
Else
  • Any of: The input buttons to check.
  • True: The script to run if the condition is true.
  • False: The script to run if the condition is false.

If Math Expression

Conditionally execute part of the script if the specified math expression evaluates to true.

References
/docs/scripting/math-expressions

If Math Expression
Expression
e.g. $health >= 0...
True
Add Event
Else
  • Expression: The expression to evaluate.
  • True: The script to run if the condition is true.
  • False: The script to run if the condition is false.

If Super GB Mode Is Available

Conditionally run part of the script if the game is being played on a device or emulator that supports Super GB games.

If Super GB Mode Is Available
True
Add Event
Else
  • True: The script to run if the condition is true.
  • False: The script to run if the condition is false.

If Variable Compare With Value

Conditionally run part of the script based on the value of a variable compared with a value.

If Variable Compare With Value
Variable
$Variable0
Comparison
==
Value
0
True
Add Event
Else
  • Variable: The variable to use.
  • Comparison: The comparison operator to use e.g. 'Less Than' or 'Greater Than'.
  • Value: The value to compare with.
  • True: The script to run if the condition is true.
  • False: The script to run if the condition is false.

If Variable Compare With Variable

Conditionally run part of the script based on the value of a variable compared with another variable.

If Variable Compare With Variable
Variable
$Variable0
Comparison
==
Other Variable
$Variable0
True
Add Event
Else
  • Variable: The variable to use.
  • Comparison: The comparison operator to use e.g. 'Less Than' or 'Greater Than'.
  • Other Variable: The variable to compare with.
  • True: The script to run if the condition is true.
  • False: The script to run if the condition is false.

If Variable Has Flag

Conditionally run part of the script if the specified variable has the chosen flag set as true.

If Variable Has Flag
Variable
$Variable0
Flag
Flag 1
True
Add Event
Else
  • Variable: The variable to use.
  • Flag: The flag to check.
  • True: The script to run if the condition is true.
  • False: The script to run if the condition is false.

If Variable Is 'False'

Conditionally run part of the script if the specified variable is set to false.

If Variable Is 'False'
Variable
$Variable0
True
Add Event
Else
  • Variable: The variable to use.
  • True: The script to run if the condition is true.
  • False: The script to run if the condition is false.

If Variable Is 'True'

Conditionally run part of the script if the specified variable is set to true.

If Variable Is 'True'
Variable
$Variable0
True
Add Event
Else
  • Variable: The variable to use.
  • True: The script to run if the condition is true.
  • False: The script to run if the condition is false.

Loop

Run part of the script in a loop forever. Remember to break out of the loop otherwise the player will become stuck at this point. You can use a Stop Script or Change Scene event to stop the loop.

Loop
Add Event

Loop For

Run part of the script in a loop while a counter variable is within a specified range. On each loop the counter variable is modified before the next check.

Loop For
For
$Variable0
From
0
Comparison
<=
To
10
Operation
+=
Value
1
Add Event
  • For: The variable to use.
  • From: The initial value of the counter variable.
  • Comparison: The comparison operator to use e.g. 'Less Than' or 'Greater Than'.
  • To: The end value of the counter variable.
  • Operation: The operation to use for combining a value with the counter variable after each loop.
  • Value: The value to combine with the counter variable after each loop.

Loop While

Run part of the script in a loop while an expression is true.

Loop While
Expression
e.g. $health >= 0...
Add Event
  • Expression: The expression to evaluate.

Stop Script

Stops the current script from running.

Stop Script
Stops current script from running.

Switch

Conditionally run from multiple options depending on the value of the specified variable. First choose how many options you want to compare the variable against, then set the values to compare and what scripts to execute when the value is matched.

Switch
Variable
$Variable0
Number of options
2
When: $$value0$$
Value
1
Add Event
When: $$value1$$
Value
2
Add Event
Else
Add Event
  • Variable: The variable to use.
  • Number of options: The number of options required.
  • Value: The value to compare the variable with for running this branch of the script.