- Joined
- Jul 14, 2011
- Messages
- 3,213
Hi!
When I equip 'Coral Sword' I trigger the possibility of creating a summon that is ordered to attack the target enemy unit.
I don't know how to avoid that 
When I equip 'Coral Sword' I trigger the possibility of creating a summon that is ordered to attack the target enemy unit.
-
Coral Sword DAMAGE
-
Events
-
Game - GDD_Event becomes Equal to 0.00
-
-
Conditions
-
(Level of 1 Coral Sword (+20 Damage) for GDD_DamageSource) Equal to 1
-
-
Actions
-
Trigger - Turn off (This trigger)
-
Set Temp_Point = (Position of GDD_DamageSource)
-
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
-
If - Conditions
-
(Random integer number between 1 and 100) Less than or equal to 15
-
-
Then - Actions
-
Unit - Create 1 Coral Sword Summon (Level 1) for (Owner of GDD_DamageSource) at Temp_Point facing Default building facing degrees
-
Unit - Order (Last created unit) to Attack GDD_DamagedUnit
-
Unit - Add a 3.00 second Generic expiration timer to (Last created unit)
-
-
Else - Actions
-
-
Custom script: call RemoveLocation(udg_Temp_Point)
-
Trigger - Turn on (This trigger)
-
-