- Joined
- May 2, 2011
- Messages
- 1,351
Hello,
when I delete the wait action, both items are dropped by the same unit. How do I fix that? Here are the two triggers. It is important to delete the wait because both units can die from single splash attacks: e.g. mortar teams or cannon tower.
when I delete the wait action, both items are dropped by the same unit. How do I fix that? Here are the two triggers. It is important to delete the wait because both units can die from single splash attacks: e.g. mortar teams or cannon tower.
-
ItemOfTheMagus01
-
Events
-
Unit - A unit owned by Player 5 (Yellow) Dies
-
-
Conditions
-
(Unit-type of (Dying unit)) Equal to Elite Necromancer
-
-
Actions
-
Trigger - Turn off (This trigger)
-
Set TempPoint003 = (Position of (Dying unit))
-
Item - Create Robe of the Magi +6 at TempPoint003
-
Custom script: call RemoveLocation(udg_TempPoint003)
-
Wait 0.03 seconds
-
Trigger - Turn on ItemOfTheMagus02 <gen>
-
-
-
ItemOfTheMagus02
-
Events
-
Unit - A unit owned by Player 5 (Yellow) Dies
-
-
Conditions
-
(Unit-type of (Dying unit)) Equal to Elite Necromancer
-
-
Actions
-
Trigger - Turn off (This trigger)
-
Set TempPoint004 = (Position of (Dying unit))
-
Item - Create Sobi Mask at TempPoint004
-
Custom script: call RemoveLocation(udg_TempPoint004)
-
-