while (roll option)
This article is a stub, you can help the RPTools Wiki project by contributing content to expand this article.
WHILE Option
Introduced: Version 1.3.b46
Repeatedly executes a statement until a condition becomes false.
Usage
[WHILE(condition): body]
[WHILE(condition, separator): body]
Example
[h:num=10]
[WHILE(num>=0): num = num-1]
Outputs 9,8,7,6,5,4,3,2,1
Example
[h: End=10]
[H: Num=0]
[WHILE(Num<End), CODE: {[num = num +1]}]
Outputs 1, 2, 3, 4, 5, 6, 7, 8, 9, 10