back to the original page

Script commands

variable group

System

Reads and writes what the system is using to a variable
Switch between reading and writing in the transfer direction

Local

Mainly read and write the content of characters and players in variables
Those with read-only are read-only
Switch between reading and writing in the transfer direction

Math

Perform arithmetic, shift and logic operations
All signed operations.

Conditions

Compares a variable to a variable or a number and branches to the right if the conditions are met

Clamp

Clamp and normalize the contents of a variable

Random

Get a random number in the specified range as a variable.

Debug

Displays the contents of the variable in the debug window

Distance

Find the distance between two points. When you want to find the distance between Character A and Character B
√((AX-BX)^2 + (AY-BY)^2)

Replay

Get the replay state as a variable.

Load

Obtains information on the current character.

Config

Reads and writes the contents of the config to variables
Read-only configuration is read-only.
Switches between read and write in transfer direction

Achiev.

Gets and sets the unlocked status and progress status of achievements when STEAM linkage is enabled in the game settings
Do not keep sending every frame.

Ranking

Send high scores when STEAM linkage is enabled in the game settings
Do not keep sending every frame.

Transfer

Collectively transfer values between variables (characters) and system variables Specifying a loop variable as an index makes it possible to refer to variables sequentially in the loop process
Back to the top of the page