Skip to main content

(45) _IF_FLAGON_JUMP

Effect

Checks the value of a flag. Jumps to a script if it is true.

The position of the jump is not saved. Execution does not return to this command once a _RET is executed.

Syntax

_IF_FLAGON_JUMP(flag, label)
ArgumentDescriptionTypesRequired
flagThe flag to checkFlag, SysFlagRequired
labelThe label to jump toStringRequired

Example

_FLAG_SET(#FH_03)
_IF_FLAGON_JUMP(#FH_03, 'ev_dummy')

The above script will set the #FH_03 flag.

Next, it checks the same flag. Since it is true, the script jumps to ev_dummy.