-
Survival Respawn 1
-
Events
-
Unit - A unit owned by Player 1 (Red) Becomes revivable
-
-
Conditions
-
(Player 1 (Red) slot status) Equal to Is playing
-
-
Actions
-
Wait 5.00 seconds
-
Unit - Create 1 Elite Sniper for Player 1 (Red) at (Random point in Map <gen>) facing Default building facing degrees
-
Camera - Pan camera for (Triggering player) to (Position of (Last created unit)) over 0.50 seconds
-
-
Sometimes the units spawn on cliffs and are unable to move until another unit kills it. How do I make it so that this doesn't happen?
I found this but I don't know how to put it in my map.
-
SomeTrigger
-
Events
-
Conditions
-
Actions
-
custom script: loop
-
custom script: exitwhen IsTerrainPathableBJ(udg_location, PATHING_TYPE_WALKABILITY) == true
-
custom script: call RemoveLocation(udg_location)
-
custom script: set udg_location = GetRandomLocInRect(GetWorldBounds())
-
custom script: endloop
-
//Revive hero at location
-
custom script: call RemoveLocation(udg_location)
-
-
-
Survival Respawn 1
-
Events
-
Unit - A unit owned by Player 1 (Red) Becomes revivable
-
-
Conditions
-
(Player 1 (Red) slot status) Equal to Is playing
-
-
Actions
-
Custom script: loop
-
Custom script: exitwhen IsTerrainPathableBJ(udg_location, PATHING_TYPE_WALKABILITY) == true
-
Custom script: call RemoveLocation(udg_location)
-
Custom script: set udg_location = GetRandomLocInRect(GetWorldBounds())
-
Custom script: endloop
-
Unit - Create 1 Elite Sniper for Player 1 (Red) at location facing Default building facing degrees
-
Custom script: call RemoveLocation(udg_location)
-
-
Last edited: