Difference between revisions of "Jump"
Jump to navigation
Jump to search
Carl Omlet (talk | contribs) m |
|||
Line 29: | Line 29: | ||
</pre> | </pre> | ||
}}{{#vardefine:notes| | }}{{#vardefine:notes| | ||
}}{{#vardefine:caveats| | }}{{#vardefine:caveats|A target does not work with multiple jumps in all cases. | ||
For multiple jumps you may need to use additional targets. | |||
''It is currently unknown if this is a technical limitation, oversight or bug.'' | |||
}}{{#vardefine:helpers| | }}{{#vardefine:helpers| | ||
}}{{#vardefine:also_header|<h3>Keywords</h3> | }}{{#vardefine:also_header|<h3>Keywords</h3> |
Revision as of 12:18, 15 September 2007
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
- The correct title of this article is jump. The initial letter is shown capitalized due to technical restrictions.
jump target;
jump target;• label | target | – | Name of a label inside the same leg of the scope hierarchy tree |
@target;
• label | target | – | A label that can be jumped to if the jump is in the same scope or child scope. |
Caveats
A target does not work with multiple jumps in all cases.
For multiple jumps you may need to use additional targets.
It is currently unknown if this is a technical limitation, oversight or bug.
Examples
integer a = 5; jump over; @in; a = 6; @over; llOwnerSay((string)a); if(a < 6) jump in; //script will say 5 and then 6