• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

Custom Ability Cast

Status
Not open for further replies.
Level 5
Joined
Jul 26, 2004
Messages
99
If you base a spell off of the "death coil" spell, you simply order the unit to cast death coil.

If you look at the "BaseOrderID" (or something of a similar name) within the ability itself, you'd notice that it's "deathcoil" or whatever the orderID was for the ability you based the custom one off of.
 
Level 7
Joined
Jun 4, 2006
Messages
127
Or, simply like this:

IF the skill is named Multiple Stomping and it is based on Thunder Clap, then it'll be like this...
  • Events
    • [?] - I dunno with you guys when the trigger will eh, trigger..
  • Conditions
    • [?]
  • Actions
    • Unit - Order [? ~ unit] to do (Human Mountain King - Thunder Clap)
The unit (with an ability that is based on Thunder Clap) will trigger this trigger....

In the BaseOrderID thing, I think it's used for identifying what the order is..

example:

  • Events
    • Unit - A unit starts the effect of an ability
  • Conditions
    • Issued Order Equal to Order(thunderclap)
  • Actions
    • ~~~~
In this, the unit who casts a spell with the BaseOrderID, thunderclap, the actions will trigger...
 
Status
Not open for further replies.
Top