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

Help with flame breath burning effect

Status
Not open for further replies.
Level 8
Joined
Aug 23, 2007
Messages
491
You can select certain effects spells can have, you should just be able to select burn and then drunken haze wont be required. I'm assuming you know how to change spells around, if not I'll go into detail.
 
Level 22
Joined
Feb 4, 2005
Messages
3,971
Use the sphere ability (Human) add chest as attachment or wherever you want change the model to breath of fire target for this ability and use triggers:

  • World Editor Help Zone
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to Breath of Fire
    • Actions
      • Set targets = (Units within 400.00 of (Target point of ability being cast))
      • Unit Group - Pick every unit in targets and do (Unit - Add Sphere to (Picked unit))
      • Wait 5.00 seconds
      • Unit Group - Pick every unit in targets and do (Unit - Remove Sphere from (Picked unit))
      • Custom script: call DestroyGroup(udg_targets)
If you want damage, use permanent Immolation with checking Self as the only Targets Allowed and use it in the same trigger.
 
Status
Not open for further replies.
Top