can you have a loop where inside the loop a interger var adds +1 every time the loop repeats, then when the interger gets too a certen interger the loop stops?
You can use "if/then/else" or "for interger A / B" to act like a loop.
For each (Integer A) from 1 to yourcertainnum, do (Actions) Loop - Actions Set yourinterger = (yourinterger + 1)
OR
If (All Conditions are True) then do (Then Actions) else do (Else Actions) If - Conditions yourinterger Not equal to yourcertainnum Then - Actions Set yourinterger = (yourinterger + 1) Trigger - Run (This trigger) (checking conditions) Else - Actions Do nothing (out of loop)
Waldbaer
#4
For every kind of counting a number up, the "For every Integer A do..."-loop is the best. You won't even have to add a custom variable. To use the current number just refer to "Loop Integer A" in the loop; you can find it at "functions".