- Joined
- Dec 25, 2018
- Messages
- 110
I want to make a spell that gives friendly unit permament buff, when used on another unit I want buff to dissapear from unit(1) and stay on unit(2) untill spell is casted again.
Here's my attempt which works, but its not MUI:
Here's my attempt which works, but its not MUI:
-
Inspire
-
Events
-
Unit - A unit Starts the effect of an ability
-
-
Conditions
-
(Ability being cast) Equal to Squire
-
-
Actions
-
Set InspireMax = (InspireMax + 1)
-
Set Unit[InspireMax] = (Target unit of ability being cast)
-
Unit - Remove Inspire buff from Unit[(InspireMax - 1)]
-
Unit - Remove Endurance Aura buff from Unit[(InspireMax - 1)]
-
Unit - Remove Item Damage Bonus (+15) from Unit[(InspireMax - 1)]
-
Unit - Add Item Damage Bonus (+15) to Unit[InspireMax]
-
Unit - Add Inspire buff to Unit[InspireMax]
-
-