I'm trying to make it so a Hero will summon a horse, then use the "Mount Hippogryph" spell to merge together with it, but it's not working. Here's what I've done:
I gave the Hero a spell based on Starfall called "Summon Felsteed". I also gave him and a horse unit called a Felsteed the Mount Felsteed and Pick Up Hero abilities. In the triggers, I made it so when you cast the Summon Felsteed spell, it summons a Felsteed, then I tried to make it so the Hero and the summoned unit right-click on eachother, then use the mounting spells. Everything works until the mounting part. The horse and the Hero just run to eachother and stop. This is my trigger:
When the Felsteed is summoned, I've tried using the "Pick Up Hero" ability, but it says "Cannot find a couple target". I've gone through the spells and made the Hero and the horse couple units, and I've specified the resulting unit, but it still doesnt seem to work. Can anyone help?
I gave the Hero a spell based on Starfall called "Summon Felsteed". I also gave him and a horse unit called a Felsteed the Mount Felsteed and Pick Up Hero abilities. In the triggers, I made it so when you cast the Summon Felsteed spell, it summons a Felsteed, then I tried to make it so the Hero and the summoned unit right-click on eachother, then use the mounting spells. Everything works until the mounting part. The horse and the Hero just run to eachother and stop. This is my trigger:
Code:
Summon Felsteed
Events
Unit - A unit Begins casting an ability
Conditions
(Ability being cast) Equal to Summon Felsteed
Actions
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
(Level of Summon Felsteed for (Triggering unit)) Equal to 1
Then - Actions
Special Effect - Create a special effect at ((Position of (Triggering unit)) offset by (25.00, 0.00)) using Abilities\Spells\Human\MarkOfChaos\MarkOfChaosTarget.mdl
Wait 0.90 seconds
Unit - Create 1 Felsteed for (Owner of (Triggering unit)) at ((Position of (Triggering unit)) offset by (15.00, 0.00)) facing (Facing of (Triggering unit)) degrees
Unit - Order (Triggering unit) to Right-Click (Last created unit)
Unit - Order (Last created unit) to Right-Click (Triggering unit)
Wait 0.90 seconds
Unit - Order (Triggering unit) to Night Elf Archer - Mount Hippogryph (Obsolete) (Last created unit)
Unit - Order (Last created unit) to Night Elf Hippogryph - Pick Up Archer (Obsolete) (Triggering unit)
Else - Actions
Do nothing
When the Felsteed is summoned, I've tried using the "Pick Up Hero" ability, but it says "Cannot find a couple target". I've gone through the spells and made the Hero and the horse couple units, and I've specified the resulting unit, but it still doesnt seem to work. Can anyone help?