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

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