Hello,
I have been doing the Beginners to construct2 tutorial.
https://www.scirra.com/tutorials/37/beginners-guide-to-construct-2/page-7
on page 7 We have added an event to create monsters every 3 secs :
Condition: System -> Every X seconds -> 3
Action: System -> Create object -> Monster, layer 1, 1400 (for X), random(1024) (for Y)
I want to stop creating the monsters after the player is destroyed.
So how do I stop the above event ?
ysrikanth2011
Condition: System -> Every X seconds -> 3
add 2nd condition here (in same condition block) where player.count > 0 - will only run when both conditions true
Action: System -> Create object -> Monster, layer 1, 1400 (for X), random(1024) (for Y)