Jmp
From Unofficial QEdit Wiki Guide
Contents
Syntax
Syntax: jmp function
- function = function to jump to.
Use
Use to jump to a function.
Example
100: window_msg 'I'm Here First'
winend
jmp 102
ret
101: window_msg 'I'm Here Third'
winend
jmp 1
ret
102: window_msg 'I'm Here Second'
winend
jmp 101
ret