- Joined
- Jul 18, 2012
- Messages
- 136
How to make :
When Some Hero attacks creep/boss or whatever the damage display up the enemy he attack.(Text Form)
And One more Thing, im ussing this trigger for neutral hostfile (creeps) respawn. But Somethink don't work. They don't revive.
When Some Hero attacks creep/boss or whatever the damage display up the enemy he attack.(Text Form)
And One more Thing, im ussing this trigger for neutral hostfile (creeps) respawn. But Somethink don't work. They don't revive.
-
Revive Creeps
-
Events
- Unit - A unit owned by Neutral Hostile Dies
- Conditions
-
Actions
- -------- Revives a creep after 60 seconds (at his initial position) --------
- Custom script: local integer id = GetUnitTypeId(GetTriggerUnit())
- Custom script: local integer i = GetUnitUserData(GetTriggerUnit())
- Custom script: local real x = udg_CreepX[i]
- Custom script: local real y = udg_CreepY[i]
- Wait 30.00 seconds
- Custom script: call SetUnitUserData(CreateUnit(Player(11), id, x, y, 0.), i)
-
Events
Last edited: