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

[Trigger] Help with trigger

Status
Not open for further replies.
Level 2
Joined
Jul 31, 2007
Messages
12
When I use the spell in the trigger it doesn't do anything.
Can anyone tell me what's wrong?
  • Middle
    • Events
      • Unit - A unit Begins casting an ability
    • Conditions
      • And - All (Conditions) are true
        • Conditions
      • (Unit-type of (Casting unit)) Equal to Mass Unit Mover
      • (Ability being cast) Equal to Move Middle
    • Actions
      • Unit Group - Pick every unit in (Units in (Playable map area) owned by (Owner of (Casting unit))) and do (Actions)
        • Loop - Actions
          • Unit - Order (Picked unit) to Attack-Move To (Center of Middle <gen>)
 
The conditions seem to be after the "And" condition, not in it. Also, have this:
  • Middle
  • Events
    • Unit - A unit Begins casting an ability
  • Conditions
    • And - All (Conditions) are true
    • Conditions
      • (Unit-type of (Triggering unit)) Equal to Mass Unit Mover
      • (Ability being cast) Equal to Move Middle
  • Actions
    • Set Temp_Group = (Units in (Playable Map Area) owned by (Owner of (Triggering unit)))
    • Set Point1 = (Center of Middle <gen>)
    • Unit Group - Pick every unit in (Temp_Group) and do (Actions)
      • Loop - Actions
        • Unit - Order (Picked unit) to Attack-Move To (Point1)
    • Custom script: call DestroyGroup (udg_Temp_Group)
    • Custom script: call RemoveLocation (udg_Point1)
 
Status
Not open for further replies.
Top