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

Stimpack Skill (Terran Marine)

Status
Not open for further replies.
Level 1
Joined
Jul 14, 2011
Messages
2
Hey! im creating a new unit in World Editor name Terran Marine and I need a stimpack skill for my Terran marine.. Can you show me the trigger for stimpack ability.. tnx ^_^
 
  • Stimpack
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to Stimpack
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • ((Triggering unit) has buff Bloodlust) Equal to False
        • Then - Actions
          • Set Point1 = (Position of (Triggering unit))
          • Unit - Create 1 Footman for (Triggering player) at Point1 facing Default building facing degrees
          • Unit - Hide (Last created unit)
          • Unit - Add Bloodlust to (Last created unit)
          • Unit - Order (Last created unit) to Orc Shaman - Bloodlust (Triggering unit)
          • Unit - Add a 2.00 seconds Generic expiration timer to (Last created unit)
          • Custom script: call RemoveLocation (udg_Point1)
        • Else - Actions
      • Unit - Set life of (Triggering unit) to ((Life of (Triggering unit)) - 10.00)
 
Level 17
Joined
Jan 21, 2010
Messages
2,111
Use berserk instead of blood lust, change the damage taken to 0.00 and you're done, also this is a very simple remake of paraoh's trigger
  • Stimpack
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to Stimpack (berserk based)
    • Actions
      • Unit - Set life of (Triggering unit) to ((Life of (Triggering unit)) - 10.00)
 
Status
Not open for further replies.
Top