HELP me with a comand -kill . PLs

Status
Not open for further replies.
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.
Back
Top