Sentinel on a Tree

Status
Not open for further replies.
I don't want to order a unit to cast it. I simply want the Sentinel to already be on the tree as the game starts.
Is there specific reason why you're avoiding the use of a unit to achieve this kind of mechanic easily?
Just curious, as you can't achieve that without mimicking the ability through scripting or just using a unit to simulate it perfectly.
 
You probably have to have a unit cast it. You can use an invisible dummy unit to do it.
Doesn't have to. One can create a dummy unit using the owl (sentinel) model (its path is : Units\NightElf\Owl\Owl.mdl) and place it on the tree. Then, create a trigger that remove this dummy after the tree dies.
  • Create Sentinel
    • Events
    • Conditions
    • Actions
      • Unit - Create 1 Sentinel (Dummy) for Player 1 (Red) at (Position of Lordearon Summer Tree 0000 <gen>) facing 0.00 degrees
      • Set Sentinel = (Last created unit)
  • Remove Sentinel
    • Events
      • Destructible - Lordearon Summer Tree 0000 <gen> dies
    • Conditions
    • Actions
      • Unit - Kill Sentinel
 
Status
Not open for further replies.
Back
Top