Loop

From UBot Studio
(Difference between revisions)
Jump to: navigation, search
(Created page with "This command repeats the contained commands a specified number of times. == Example == <pre> set(#number, 0, "Global") loop(10) { increment(#number) add item to lis...")
 
Line 1: Line 1:
This command repeats the contained commands a specified number of times.   
+
This command repeats the contained commands a specified number of times. The number of times the contained commands are looped are determined by the Number of Cycles field in the command.   
  
 
== Example ==
 
== Example ==

Revision as of 18:37, 24 December 2012

This command repeats the contained commands a specified number of times. The number of times the contained commands are looped are determined by the Number of Cycles field in the command.

Example

set(#number, 0, "Global")
loop(10) {
    increment(#number)
    add item to list(%my numbers, #number, "Delete", "Global")
}

The script loops the process of incrementing the variable #number and adding each number to the list as an item.

File:Loop.png

Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox