• 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!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

loops

Status
Not open for further replies.
Level 6
Joined
Oct 11, 2005
Messages
142
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?
 
Level 5
Joined
Nov 14, 2004
Messages
159
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)
 
Status
Not open for further replies.
Top