• 🏆 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!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 Click here to enter!

spells

Status
Not open for further replies.
Level 4
Joined
Feb 1, 2011
Messages
71
is impassiple to make timed skill etc. Every 60sec of game time "Lich King" unleashes skil"bla bla bla" Help +rep
 
Level 4
Joined
Feb 1, 2011
Messages
71
yes please. i need something like this. Every 40 seconds Deathknight unleashes death coil on attacking unit. etc and when unit is atacked every 40 second he unleashes battleshout.
 
You can use something like this as an example:
  • Melee Initialization
    • Events
      • Map initialization
    • Conditions
    • Actions
      • Set SpellsCooldown[1] = 5.00
      • Set MayCast[1] = True
  • Death Coil
    • Events
      • Unit - A unit Is attacked
    • Conditions
      • (Unit-type of (Triggering unit)) Equal to Arthas (Evil)
      • MayCast[1] Equal to True
    • Actions
      • Custom script: call IssueTargetOrder (GetTriggerUnit(), "deathcoil", GetAttacker())
      • Set MayCast[1] = False
      • Countdown Timer - Start GlobalCooldownTimers as a One-shot timer that will expire in SpellsCooldown[1] seconds
  • Cooldown1
    • Events
      • Time - GlobalCooldownTimers expires
    • Conditions
    • Actions
      • Set MayCast[1] = True
"5.00" is the cooldown, change it to 40.00 in your case (it was set for testing reasons).
 

Attachments

  • Ex Cast.w3x
    17.2 KB · Views: 49
Status
Not open for further replies.
Top