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

Detect unit combat state

Status
Not open for further replies.
Level 28
Joined
Feb 18, 2014
Messages
3,578
You can use a timer and a boolean to check if a unit is in combat.
  • Combat Detected
    • Events
      • Unit - A unit is Attacked
    • Conditions
      • (Attacked unit) Equal to "Your unit"
    • Actions
      • Countdown Timer - Start CombatCheckTimer as a One-shot timer that will expire in 5.00 seconds
      • Set InCombat = TRUE
And
  • Combat Resolved
    • Events
      • Countdown Timer - CombatCheckTimer expires
    • Conditions
    • Actions
      • Set InCombat = FALSE
 
Status
Not open for further replies.
Top