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

HELP me with a comand -kill . PLs

Status
Not open for further replies.

Uncle

Warcraft Moderator
Level 73
Joined
Aug 10, 2018
Messages
7,873
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