1 Conditional Jump Operator
steve-px edited this page 2026-07-07 11:01:03 +00:00

🢐🢐 Index🢐 Previous Page | (End of Appendix A1)


[-] Appendix A1 - Configuration Script Interpreter

Conditional Jump Operator (#JMPIF)

Syntax

#JMPIF <String: Condition> <Label>

Description

Jumps to a specified label in the configuration file if the condition evaluates to true. The condition can include console variables, allowing script execution to be controlled dynamically based on their values.

Examples

#JMPIF "$cv_var_a == 0" SomeLabel
(...)

SomeLabel:
(...)

🢐🢐 Index🢐 Previous Page | (End of Appendix A1)