Difference between revisions of "Jmp"
From Unofficial QEdit Wiki Guide
Line 5: | Line 5: | ||
==Use== | ==Use== | ||
− | + | Used to jump to a function with no conditions. | |
==Example== | ==Example== |
Latest revision as of 12:38, 28 March 2011
Contents
Syntax
Syntax: jmp function
- function = function to jump to.
Use
Used to jump to a function with no conditions.
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