Hello friends, i have two problem... i am trying to create an aura that increases my attributes by percentages, i want the attributes return to their original form if i do not have the item, or i'm not under the influence of aura.
1. When i put "Substract" in "Else - Actions", i subtracted attributes while under the effects of the aura and many more of which i add.
2. When i am outside the area of the aura, attributes not return to its original form.
Trigger:
1. When i put "Substract" in "Else - Actions", i subtracted attributes while under the effects of the aura and many more of which i add.
2. When i am outside the area of the aura, attributes not return to its original form.
Trigger:
-
Attribute Aura
-
Events
-
Unit - A unit Learns a skill
-
-
Conditions
-
(Learned Hero Skill) Equal to Damage Increase (Dummy)
-
-
Actions
-
Set AttributeBonus_Group = (Units in (Playable map area))
-
Unit Group - Pick every unit in AttributeBonus_Group and do (Actions)
-
Loop - Actions
-
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
-
If - Conditions
-
((Picked unit) has buff Damage Increase (Level 1)) Equal to True
-
-
Then - Actions
-
Hero - Modify Agility of (Picked unit): Add (Integer((0.10 x (Real((Agility of (Picked unit) (Include bonuses)))))))
-
Hero - Modify Intelligence of (Picked unit): Add (Integer((0.10 x (Real((Intelligence of (Picked unit) (Include bonuses)))))))
-
Hero - Modify Strength of (Picked unit): Add (Integer((0.10 x (Real((Strength of (Picked unit) (Include bonuses)))))))
-
-
Else - Actions
-
Hero - Modify Agility of (Picked unit): Subtract (Integer((0.10 x (Real((Agility of (Picked unit) (Include bonuses)))))))
-
Hero - Modify Intelligence of (Picked unit): Subtract (Integer((0.10 x (Real((Intelligence of (Picked unit) (Include bonuses)))))))
-
Hero - Modify Strength of (Picked unit): Subtract (Integer((0.10 x (Real((Strength of (Picked unit) (Include bonuses)))))))
-
-
-
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
-
If - Conditions
-
((Picked unit) has buff Damage Increase (Level 2)) Equal to True
-
-
Then - Actions
-
Hero - Modify Agility of (Picked unit): Add (Integer((0.25 x (Real((Agility of (Picked unit) (Include bonuses)))))))
-
Hero - Modify Intelligence of (Picked unit): Add (Integer((0.25 x (Real((Intelligence of (Picked unit) (Include bonuses)))))))
-
Hero - Modify Strength of (Picked unit): Add (Integer((0.25 x (Real((Strength of (Picked unit) (Include bonuses)))))))
-
-
Else - Actions
-
Hero - Modify Agility of (Picked unit): Subtract (Integer((0.25 x (Real((Agility of (Picked unit) (Include bonuses)))))))
-
Hero - Modify Intelligence of (Picked unit): Subtract (Integer((0.25 x (Real((Intelligence of (Picked unit) (Include bonuses)))))))
-
Hero - Modify Strength of (Picked unit): Subtract (Integer((0.25 x (Real((Strength of (Picked unit) (Include bonuses)))))))
-
-
-
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
-
If - Conditions
-
((Picked unit) has buff Damage Increase (Level 3)) Equal to True
-
-
Then - Actions
-
Hero - Modify Agility of (Picked unit): Add (Integer((0.40 x (Real((Agility of (Picked unit) (Include bonuses)))))))
-
Hero - Modify Intelligence of (Picked unit): Add (Integer((0.40 x (Real((Intelligence of (Picked unit) (Include bonuses)))))))
-
Hero - Modify Strength of (Picked unit): Add (Integer((0.40 x (Real((Strength of (Picked unit) (Include bonuses)))))))
-
-
Else - Actions
-
Hero - Modify Agility of (Picked unit): Subtract (Integer((0.40 x (Real((Agility of (Picked unit) (Include bonuses)))))))
-
Hero - Modify Intelligence of (Picked unit): Subtract (Integer((0.40 x (Real((Intelligence of (Picked unit) (Include bonuses)))))))
-
Hero - Modify Strength of (Picked unit): Subtract (Integer((0.40 x (Real((Strength of (Picked unit) (Include bonuses)))))))
-
-
-
-
-
Custom script: call DestroyGroup(udg_AttributeBonus_Group)
-
-