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

Im trying to make a unit spawn units and automatically attack random regions

Status
Not open for further replies.
Level 37
Joined
Jul 22, 2015
Messages
3,485
In a Map Initilization event, you can set the locations like this:

  • Actions
    • Set RegionLocation[1] = (Center of (Playable map area))
    • Set RegionLocation[2] = (Center of (Playable map area))
    • Set RegionLocation[3] = (Center of (Playable map area))
    • Set RegionLocation[4] = (Center of (Playable map area))
    • Set RegionLocation[5] = (Center of (Playable map area))
In a seperate trigger, you can have something like this:
  • Actions
    • Unit - Create 1 Footman for Player 1 (Red) at (Center of (Playable map area)) facing Default building facing degrees
    • Set Random = (Random integer number between 1 and 5)
    • Unit - Order (Last created unit) to Move To RegionLocation[Random]
 
Status
Not open for further replies.
Top