• 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.

[Solved] How to use Native damage detection of World Editor V1.31+?

Status
Not open for further replies.
Level 5
Joined
Oct 29, 2020
Messages
87
Could anybody give me an example? Could it be used to create a spell like adding slow effect to Shockwave?
 
Last edited:

Uncle

Warcraft Moderator
Level 73
Joined
Aug 10, 2018
Messages
7,866
There's no perfect solution for detecting the Ability that triggered the Damage Event. You can detect the Spell damage-type though.

What you can do:
1) Trigger Shockwave yourself. I have examples of this on the site, search "Uncle Custom Shockwave".
2) Create and order a unique Dummy unit to cast Shockwave. Then you can detect the Unit-type of the (Damage source) in your Damage Event. You will know that the damage came from Shockwave since the Shockwave Dummy was the (Damage source). This only works if the Dummy is used EXCLUSIVELY for this one ability. The main issue here is that this method will give the Kill credit to the Dummy and not the Hero that casted Shockwave. It also requires you to have an additional "fake" Shockwave ability that is used by your Hero in order to get this whole process running.

Here's an example of a GUI damage event:
  • Example
    • Events
      • Unit - A unit Takes damage
    • Conditions
      • (Damage From Normal Attack) Equal to True
    • Actions
      • Event Response - Set Damage of Unit Damaged Event to ((Damage taken) + 100.00)
This increases damage taken from normal attacks (autoattacks - not spells) by 100.


Note that native damage detection and Bribe's Damage Engine system are basically the same thing, Bribe just added a bunch of nice features at the cost of a lot of variables. I can see why the variable count may deter some people from wanting to use it and instead stick with the GUI natives but a lot of those features are must haves in my opinion.
 
Last edited:
Level 19
Joined
Oct 17, 2012
Messages
859
Utilizing this Damage Type table, it is possible to determine if the damage comes from Shockwave as long as the hero does not have an ability with the same damage type. If the hero has another ability with the same damage type but the ability's damage is different from Shockwave, you can use that difference to determine the damage comes from Shockwave.
 
Level 5
Joined
Oct 29, 2020
Messages
87
There's no perfect solution for detecting the Ability that triggered the Damage Event. You can detect the Spell damage-type though.

What you can do:
1) Trigger Shockwave yourself. I have examples of this on the site, search "Uncle Custom Shockwave".
2) Create and order a unique Dummy unit to cast Shockwave. Then you can detect the Unit-type of the (Damage source) in your Damage Event. You will know that the damage came from Shockwave since the Shockwave Dummy was the (Damage source). This only works if the Dummy is used EXCLUSIVELY for this one ability. The main issue here is that this method will give the Kill credit to the Dummy and not the Hero that casted Shockwave. It also requires you to have an additional "fake" Shockwave ability that is used by your Hero in order to get this whole process running.

Here's an example of a GUI damage event:
  • Example
    • Events
      • Unit - A unit Takes damage
    • Conditions
      • (Damage From Normal Attack) Equal to True
    • Actions
      • Event Response - Set Damage of Unit Damaged Event to ((Damage taken) + 100.00)
This increases damage taken from normal attacks (autoattacks - not spells) by 100.


Note that native damage detection and Bribe's Damage Engine system are basically the same thing, Bribe just added a bunch of nice features at the cost of a lot of variables. I can see why the variable count may deter some people from wanting to use it and instead stick with the GUI natives but a lot of those features are must haves in my opinion.
Thank you for your detailed guidance. I've learned the most needed.
 
Level 5
Joined
Oct 29, 2020
Messages
87
Utilizing this Damage Type table, it is possible to determine if the damage comes from Shockwave as long as the hero does not have an ability with the same damage type. If the hero has another ability with the same damage type but the ability's damage is different from Shockwave, you can use that difference to determine the damage comes from Shockwave.
Thank you. I've known how to write the conditions of the trigger.
 
Status
Not open for further replies.
Top