• Check out the results of the Techtree Contest #19!
  • Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.
  • Create a void inspired texture for Warcraft 3 and enter Hive's 34th Texturing Contest: Void! Click here to enter!
  • The Hive's 22nd Icon Contest: Creep Abilities is now concluded, time to vote for your favourite set of icons! Click here to vote!

[Trigger] HELP ME with skill

Status
Not open for further replies.
Level 7
Joined
May 6, 2008
Messages
284
I want him to fly in air how i can do it + how i can delete those spikes after i cast this because they stay on their chest


  • Spike Strike
    • Events
      • Unit - A unit Begins casting an ability
    • Conditions
      • (Ability being cast) Equal to Storm Bolt1
    • Actions
      • Set AttackAbility = (Target unit of ability being cast)
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Level of Storm Bolt1 for (Casting unit)) Equal to 1
        • Then - Actions
          • Special Effect - Create a special effect attached to the chest of (Target unit of ability being cast) using Abilities\Spells\Undead\Impale\ImpaleMissTarget.mdl
          • Special Effect - Create a special effect attached to the chest of (Casting unit) using Abilities\Spells\NightElf\BattleRoar\RoarCaster.mdl
        • Else - Actions
 
for question number two: use this trigger
  • Special Effect - Destroy (Last created special effect)
 
sadly i do not know the answer to that question. but i THINK its only possible in JASS. but im not an expert ;)
 
You can do this:
  • Unit - Add Crow Form to (WHICH UNIT)
  • Unit - Remove Crow Form from (WHICH UNIT)
  • Animation - Change (WHICH UNIT) flying height to HEIGHT at RATE
If you want a unit to jump you can ask shadow1500 for his jump formula.
 
Easy as pie.

Though, it doesn't work 100%, its because of the wait.

You have to do something yourself, too.
 

Attachments

create metamorphosis ability with alternative form griphon(or any other flying unit) add that ability to targeted unit of ability being cast and change its flying height, than you need a second trigger that moves unit instantly to point+ (10) best to use "for each integer from 1 to "10/20/200" do actions" and move it every 0.10 second using facing of caster.
 
juz create a dummy unit.
give him a skill impale that.
dummy data:
change his model file to .mdl (nothing)
art - animation - cast backswing to 0
art - animation - cast point to 0 [NEW]
combat - attacks enabled to none
combat - death type : can't raise and does not decay.

impale data:
aoe 25
wave time 0.01
distance 25
cast range 99999
mana 0


  • Spike Strike
    • Events
      • Unit - A unit Starts the effect of an ability <<<<<< Important
    • Conditions
      • (Ability being cast) Equal to Storm Bolt1
    • Actions
      • Set AttackAbility = (Target unit of ability being cast)
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Level of Storm Bolt1 for (Casting unit)) Equal to 1
        • Then - Actions
          • Special Effect - Create a special effect attached to the origin of (Casting unit) using Abilities\Spells\NightElf\BattleRoar\RoarCaster.mdl <<<(origin i suggested)
          • Special Effect - Destroy (Last created special effect)
          • Unit - Create 1 Footman for (Owner of (Triggering unit)) at (Target point of ability being cast) facing Default building facing degrees
          • Unit - Add a 3.00 second Generic expiration timer to (Last created unit)
          • Unit - Order (Last created unit) to Undead Crypt Lord - Impale (Target unit of ability being cast)
        • Else - Actions
Add variable if u want.
 
Last edited:
Status
Not open for further replies.
Back
Top