• 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] High damage blocker

Status
Not open for further replies.
Level 8
Joined
Oct 6, 2022
Messages
185
Hey guys, i would like to ask how to make a passive skill that blocks incoming High damage like 150 damage above for example but when the damage was lower than 150, it would proceed to damage the owner of the passive skill.... The base passive skill was Demolish which the owner should not have a buff on it's status.
If it needs a trigger, i would be great if was not jass.
Thanks in advance :thumbs_up:
 

Uncle

Warcraft Moderator
Level 73
Joined
Aug 10, 2018
Messages
7,875
You can create the trigger using the generic damage event:
  • Example
    • Events
      • Unit - A unit Takes damage
    • Conditions
      • (Level of PutYourAbilityHere for (Damage Target)) Greater than 0
      • (Damage taken) Greater than or equal to 150.00
    • Actions
      • Event Response - Set Damage of Unit Damaged Event to ((Damage taken) / 2.00)
Or use a Damage Engine if you're looking for more control.

The above trigger will cut the damage in half if it's >= 150.00. You can use any kind of Arithmetic you want here just remember that you may end up healing the unit if the damage goes negative.

Also, the Damage related conditions/actions are under the Event Response category for some dumb reason, Reforged devs were clueless.

The Ability is optional. I recommend basing it on Storm Hammers if you don't want it to have any effects besides this trigger.
 
Last edited:
Level 8
Joined
Oct 6, 2022
Messages
185
Thanks, For some reason only the "Unit - SPE (Specific Unit Event)" has the category Takes Damage not the GUE (Generic Unit Event). But I'll try the other alternative category on GUE.
 

Uncle

Warcraft Moderator
Level 73
Joined
Aug 10, 2018
Messages
7,875
The latest version is downloadable through the Battle.net app, the same app required to play the game on the Bnet. If you still have your CD Key then you can link it to your Bnet account and get access to the game in the app.

Understand that purchasing Reforged simply gives you access to the HD graphics. If you own a copy of Warcraft 3, regardless of when you purchased it, you're able to play with both Reforged players (those who purchased Reforged) and Classic players (those who only have a copy of the Classic game) at the same time.

Some people, I imagine like yourself, didn't like the changes that were required to keep playing Warcraft 3 on the Bnet, so they refused to update their game to the newer patches. Instead, they continued playing offline or by using services like NetEase.

Fortunately, some of the features that were lost like custom campaigns are finally being added back to the game so you shouldn't be missing out on too much by updating to the latest patch. Unfortunately, there are still bugs and issues that may never get fixed, but the game is still in a playable state.
 
Last edited:
Status
Not open for further replies.
Top