004D
Jump to navigation
Jump to search
Description
- Jumps to a label if the condition is false.
Syntax
- 004D: jump_if_false [label]
- else_jump [label]
- jf [label]
Parameters
- [label]
- The position in the script it will go to, usually identified by a label
This opcode is used in conditional jumps; its primary usage is in conditional statements. The destination point is identified by a label, which is then used as a parameter. In Sanny Builder where higher-level syntax is supported, the opcode is built into the syntax wherever conditional statements like if-then-else are used.
Keywords
if, conditional, statement, jf, jump, goto, false
See also
- 0002, goto