• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Waves

Status
Not open for further replies.
Level 3
Joined
Apr 14, 2007
Messages
40
Hello,
How do you make waves of enermys, like wave 1 has 4 footmen and 2 rifle men and wave 2 has 6 footmen 4 rifle men and 2 knights?
 
Level 13
Joined
Jun 10, 2007
Messages
780
Triggers (change these to whatever you want)
  • Events
    • Time - Every 5.00 seconds of game time
  • Actions
    • Unit - Create 1 Footman for Player 1 (Red) at (Center of (Playable map area)) facing Default building facing degrees
    • Unit - Create 1 Rifleman for Player 1 (Red) at (Center of (Playable map area)) facing Default building facing degrees
  • Events
    • Unit - A unit enters Whatever region
  • Actions
    • Unit - Order (Entering unit) to Move To a region
 
Level 21
Joined
Aug 21, 2005
Messages
3,699
Wave is an integer variable

  • Events
    • Time - Every 15.00 seconds of game time
  • Conditions
  • Actions
    • Set "Wave" = "Wave" + 1
    • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
      • If - Conditions
        • Wave = 1 then do multiple actions:
      • Then - actions
        • Unit - create 4 footman for player 1(red)
        • Unit - create 2 riflemen for player 1(red)
      • Else - actions
        • Unit - create 6 footman for player 1(red)
        • Unit - create 4 riflemen for player 1(red)
        • Unit - create 2 knight for player 1(red)
I didn't use editor, which is why the trigger doesn't look good :)
 
Status
Not open for further replies.
Top