So, I have a slight problem.
Commonly, a hero will die underneath a large waygate, and their items will drop underneath it, where no one can click to pick them up (or people will abuse this and intentionally drop an item there). I tried to put in a trigger to handle that, doesn't quite work out, any tips where I went wrong?
Commonly, a hero will die underneath a large waygate, and their items will drop underneath it, where no one can click to pick them up (or people will abuse this and intentionally drop an item there). I tried to put in a trigger to handle that, doesn't quite work out, any tips where I went wrong?
-
AntiItemDrop
-
Events
-
Unit - A unit Loses an item
-
-
Conditions
-
((Item being manipulated) is in AntiItemDrop <gen>) Equal to True
-
-
Actions
-
Set TempPoint = (Center of Move Item here <gen>)
-
Item - Move (Item being manipulated) to TempPoint
-
Custom script: call RemoveLocation(udg_TempPoint)
-
-