Difference between revisions of "Jump"

From Second Life Wiki
Jump to navigation Jump to search
Line 1: Line 1:
{{LSL Header|
{{LSL Header|
}}{{#vardefine:name|jump
}}{{#vardefine:p_jump_target_desc|Name of a label inside the same leg of the scope hierarchy tree
}}{{#vardefine:p_jump_target_desc|Name of a label inside the same leg of the scope hierarchy tree
}}{{#vardefine:p_label_target_desc|A label that can be jumped to if the jump is in the same scope or child scope.
}}{{#vardefine:p_label_target_desc|A label that can be jumped to if the jump is in the same scope or child scope.

Revision as of 13:42, 2 March 2007

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.

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