• 🏆 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!
  • ✅ The POLL for Hive's Texturing Contest #33 is OPEN! Vote for the TOP 3 SKINS! 🔗Click here to cast your vote!

Need help with a condition

Status
Not open for further replies.
Level 26
Joined
Sep 26, 2009
Messages
2,439
Something like this?

  • Custom script: set bj_wantDestroyGroup = true
  • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
    • If - Conditions
      • (Number of units in (Units in (Playable map area) matching ((((Matching unit) is alive) Equal to True) and ((Owner of (Matching unit)) Equal to Player 1 (Red))))) Less than or equal to 1
    • Then - Actions
      • -------- do stuff --------
    • Else - Actions
If so, that's Integer comparison -> Unit - Count units in unit group.
As for the unit group itself, that's 'Units in region matching condition'.

The custom script
  • Custom script: set bj_wantDestroyGroup = true
is there to prevent memory leak from creating a unit group
 
Status
Not open for further replies.
Top