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

how to make Creep spawn

Status
Not open for further replies.
Level 3
Joined
Feb 9, 2008
Messages
15
Well, i wanted to do a map with 2 creep spawn zones but i dont know how and in the tutorials i dont find anything and i the ñast i found was understandable.
i want to make a creep spawn zone to team 1 and another one to team 2.
i want 40 levels each 20s of 5 mosnters.
can someone help me please!??!

P.D.: if something is misspelled sorry but i dont speak english fluently xD
 
Level 10
Joined
Jul 22, 2007
Messages
261
  • Trigger
    • Events
      • Game - Level becomes Equal to 1.00
    • Conditions
    • Actions
      • Unit - Create 20 Footman for Player 12 (Brown) at (Center of Left Attack <gen>) facing Default building facing degrees
      • Unit - Create 20 Footman for Player 12 (Brown) at (Center of Right Attack <gen>) facing Default building facing degrees
Well do you want 40 levels with 20 monster of 5 types?
Like 4 of each monster whitch will = 20?
 
Level 20
Joined
Jan 6, 2008
Messages
2,627
Ohh, then he needs an Unit Type variable with arrays depending on the waves named Name

Set Unit_Type[1] - Footman
Set Unit_Type[2] - Knight


Unit - Create Unit_Count[1] Unit_Type[1] for plr brown on your region
Unit - Create Unit_Count[2] Unit_Type[2] for plr brown on your region
 
Level 3
Joined
Feb 9, 2008
Messages
15
ok i was trying to copy from a tutorial the spawn system but it was very difficult and the author didnt show how to do the triggers and i dont understand this:

Set Unit_Type[1] - Footman
Set Unit_Type[2] - Knight
 
Last edited:
Level 20
Joined
Jan 6, 2008
Messages
2,627
Variables (CTRL_B) Press the Green X to create a new, call it "Unit_Type" set it to "Unit_Type" with some arrays, depending on how many lvls

Then you press Actions
"S" and you will get to Set Variable
Set Unit_type[1] - Footman
Set Unit_Type[2] - Knight

Then you press another action where you want him to spawn.

"U" for Unit and Create Unit for plr will come up, then you edit it to this.
Unit - Create 15 Unit_Type[1] for Player 12 (Brown) Center of SpawnPlace
 
Status
Not open for further replies.
Top