I'm trying to figure out For and While loops, but I just can't grasp how to apply them properly in this event system.
Example of what I want to do (building up on the Ghost Shooter tutorial):
monsterDensity = 1
Every 3000ms, run a loop:
loopcount = 0
while loopcount != monsterDensity
spawn monster at random(x,y)
loopcount += 1
[after while loop breaks]
monsterDensity += 1
[/code:27gqz4qw]
I know that's not actual code, but the logic should be sound. How can I put this into event sheets?