• 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.

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

Status
Not open for further replies.
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