Skip to main content

(48) _IF_FLAGOFF_CALL

Effect

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

The position of the call is saved. Execution returns to this command once a _RET is executed.

Syntax

_IF_FLAGOFF_CALL(flag, label)
ArgumentDescriptionTypesRequired
flagThe flag to checkFlag, SysFlagRequired
labelThe label to callStringRequired

Example

_FLAG_SET(#FH_03)
_IF_FLAGOFF_CALL(#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 call ev_dummy and continues execution.