• 🏆 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!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 Click here to enter!

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