- Joined
- Dec 12, 2012
- Messages
- 96
I'm creating a trigger that increases an item's charges whenever heroes pick/acquire item of the same type. My trigger works, it adds charges but it doesn't remove the other item. And when I add ITEM - REMOVE, it just removes both items. How do I fix this?
-
Increase item charges
-
Events
-
Unit - A unit Acquires an item
-
-
Conditions
-
(Item-type of (Item being manipulated)) Equal to Millenium Coin
-
-
Actions
-
Set MCoin1 = (Item carried by (Triggering unit) of type Millenium Coin)
-
Item - Set charges remaining in MCoin1 to ((Charges remaining in MCoin1) + 1)
-
-