Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
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)
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".
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.