Skip to main content

(46) _IF_FLAGOFF_JUMP

Effect

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

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

Syntax

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

Example

_FLAG_SET(#FH_03)
_IF_FLAGOFF_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 does not jump to ev_dummy and continues execution.