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

HELP me with a comand -kill . PLs

Status
Not open for further replies.

Uncle

Warcraft Moderator
Level 64
Joined
Aug 10, 2018
Messages
6,536
Kill each selected unit:
  • Untitled Trigger 002
    • Events
      • Player - Player 1 (Red) types a chat message containing -kill as An exact match
    • Conditions
    • Actions
      • Set VariableSet KillGroup = (Units currently selected by (Triggering player))
      • Unit Group - Pick every unit in KillGroup and do (Actions)
        • Loop - Actions
          • Unit - Kill (Picked unit)
      • Custom script: call DestroyGroup(udg_KillGroup)
Kill only your own selected units:
  • Untitled Trigger 002
    • Events
      • Player - Player 1 (Red) types a chat message containing -kill as An exact match
    • Conditions
    • Actions
      • Set VariableSet KillPlayer = (Triggering player)
      • Set VariableSet KillGroup = (Units currently selected by (Triggering player))
      • Unit Group - Pick every unit in KillGroup and do (Actions)
        • Loop - Actions
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • (Owner of (Picked unit)) Equal to KillPlayer
            • Then - Actions
              • Unit - Kill (Picked unit)
            • Else - Actions
      • Custom script: call DestroyGroup(udg_KillGroup)
Kill a specific unit that you've set beforehand:
  • Untitled Trigger 002
    • Events
      • Player - Player 1 (Red) types a chat message containing -kill as An exact match
    • Conditions
    • Actions
      • Unit - Kill KillTarget
  • Set Variable KillTarget = Some unit
 
Status
Not open for further replies.
Top