• 🏆 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!

How to change attack index

Status
Not open for further replies.
Level 10
Joined
May 28, 2011
Messages
455
This only damage the target instantly. I want to make the attack type change to magic. Is this possible?

Edit: pharaoh: how about if the hero has another transform ability such as ethereal form? what will happen? :\
 
Last edited by a moderator:
Then you might want to make a check, before you use that system. Check when the unit "enters" the ethereal form:

  • OPrd
    • Events
      • Unit - A unit Is issued an order with no target
    • Conditions
      • (Issued order) Equal to (Order(etherealform))
    • Actions
      • Unit Group - Add (Triggering unit) to EtherealGroup
Now, when your hero is supposed to have their attack type changed, you can make this check:
  • ((Triggering unit) is in EtherealGroup) Equal to True
Make the transformation and add the ability called "Ethereal" to your unit, to retain the ethereal form in your new unit-type (which is changed through the system I linked).
 
Status
Not open for further replies.
Top