I am new and i don't know how to do this trigger. I want 5 units to be in a region. When they're in the region I want them to all die. After that it will create a new unit in the region. THank you in advance.
223 posts If it was the same as yours, would you still wanna ask it? joined
#2
Variables --------- Unitcount - Integer - Init=0
Trigger 1 --------- Events: unit enters region 001 condition: (define what unit should enter, should it be owned by player 1, should it only be a footman, or ...) Action: Set variable: Unitcount = Unitcount + 1
Trigger 2 --------- Events: unit leaves region 001 condition: (define what unit should enter, should it be owned by player 1, should it only be a footman, or ...) Action: Set variable: Unitcount = Unitcount - 1
Trigger 3 --------- Events: unit enters region 001 Condition: Integer: Unitcount >=5 Action: Pick every unit in (units in region [owned by player 1 if that was a condition in trigger 1 and 2]) and do action: kill picked unit Unit - Create Thenewunit at center of region 001
If this should happen every time you have 5 units in your region, add the following action to the last trigger
Set variable: Unitcount = 0
If this should not happen every time, I'd suggest to add the following action to the 1st and 2nd rtiger: