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

Combo system?

Status
Not open for further replies.
Level 11
Joined
Jun 20, 2009
Messages
880
This should be fine?

  • Trig1
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to Falcon Punch
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • ComboBoolean Equal to True
        • Then - Actions
          • Unit - Order (Triggering unit) to Human Paladin - Resurrection (This will be the combo spell.)
          • Set ComboBoolean = False
        • Else - Actions
          • Set ComboBoolean = True
          • Trigger - Run Trig2 <gen> (checking conditions)
  • Trig2
    • Events
    • Conditions
    • Actions
      • Wait 3.00 seconds (If you don't do another Falcon Punch in 3 seconds the combo will fail.)
      • Set ComboBoolean = False
  • Trig3
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Not equal to Falcon Punch
    • Actions
      • Set ComboBoolean = False (If you cast another ability between Falcon Punches the combo will fail.)


-------
 
Status
Not open for further replies.
Top