Hi! I started working on a creep spawn system for my project but somehow i can't make this trigger work as I want it to do. The first problem is that I want the creeps to start spawning at 120 seconds of elapsed game time and continue spawning every 30 seconds of game time. Somehow they start spawning at 150 seconds of elapsed game time. There are other units that should start spawning at the 5th wave of creeps (270 seconds of elapsed game time) and then spawn every 5 wave of creeps (150 seconds) but somehow they start spawning at the second wave of creeps. Can someone help me to fix this?
This is the trigger that turns on the spawns:
This is the trigger that turns on the spawns:
-
Turn on Spawns
-
Events
-
Time - Elapsed game time is 120.00 seconds
-
-
Conditions
-
Actions
-
Trigger - Turn on South Region Spawn 1 <gen>
-
Trigger - Turn on Central Region Spawn 1 <gen>
-
Trigger - Turn on East Spawn 1 <gen>
-
Trigger - Turn on South Region Spawn 2 <gen>
-
Trigger - Turn on Central Region Spawn 2 <gen>
-
Trigger - Turn on East Spawn 2 <gen>
-
-
-
South Region Spawn 1
-
Events
-
Time - Every 30.00 seconds of game time
-
-
Conditions
-
Actions
-
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
-
If: All Conditions are True
-
(Evil BuildingA 0039 <gen> is alive) Igual a True
-
(Evil BuildingB 0037 <gen> is alive) Igual a True
-
-
Then: Actions
-
Unit - Create 1 CreepA for Player 1 (red) at (Center of South RegionA <gen>) facing 90.00 degrees
-
Unit - Create 1 CreepB for Player 1 (red) at (Center of South RegionB <gen>) facing 90.00 degrees
-
Unit - Create 1 CreepC for Player 1 (red) at (Center of South RegionC <gen>) facing 90.00 degrees
-
Unit - Create 1 CreepD for Player 1 (red) at (Center of South RegionD <gen>) facing 90.00 degrees
-
-
Else: Actions
-
Unit - Create 1 CreepA (Mega) for Player 1 (red) at (Center of South RegionA <gen>) facing 90.00 degrees
-
Unit - Create 1 CreepB (Mega) for Player 1 (red) at (Center of South RegionB <gen>) facing 90.00 degrees
-
Unit - Create 1 CreepC (Mega) for Player 1 (red) at (Center of South RegionC <gen>) facing 90.00 degrees
-
Unit - Create 1 CreepD (Mega) for Player 1 (red) at (Center of South RegionD <gen>) facing 90.00 degrees
-
-
-
-
-
South Region Spawn 2
-
Events
-
Time - Every 150.00 seconds of game time
-
-
Conditions
-
Actions
-
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
-
If: All Conditions are True
-
(Evil BuildingA 0039 <gen> is alive) Igual a True
-
(Evil BuildingB 0037 <gen> is alive) Igual a True
-
-
Then: Actions
-
Unit - Create 1 CreepS for Player 1 (red) at (Center of South RegionS <gen>) facing 90.00 degrees
-
-
Else: Actions
-
Unit - Create 1 CreepS (Mega) for Player 1 (red) at (Center of South RegionS <gen>) facing 90.00 degrees
-
-
-
-