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

[Trigger] Condition: While triggering unit is researching

Status
Not open for further replies.
Level 11
Joined
Nov 15, 2007
Messages
781
Create a variable unit group. (I use variables a lot for all the conditions missing in GUI)

  • begin
    • Events
      • Unit - A unit Begins research
    • Conditions
    • Actions
      • Unit Group - Add (Researching unit) to isresearching
  • end
    • Events
      • Unit - A unit Cancels research
      • Unit - A unit Finishes research
    • Conditions
    • Actions
      • Unit Group - Remove (Researching unit) from isresearching
Then use a "unit is in unit group" check for the condition of your triggers.
 
Status
Not open for further replies.
Top