Killing counting trigger

Status
Not open for further replies.
Level 24
Joined
Jul 9, 2009
Messages
4,097
Hi I´m serching for an trigger that can count how many units every player have killed. But it shall only count how many units they´ve killed that belongs to player 12 (brown). Please dont send screenshots link the map instead that have this trigger so I easy can see how to do it.
 
As simple as
  • Events
    • Unit - A unit dies
  • Conditions
    • (Owner of (Triggering Unit)) equal to Player 12 (Brown)
    • (Killing Unit) not equal to (No unit)
  • Actions
    • Set Kills[Player Number of (Owner of (Killing Unit))] = (Kills[Player Number of (Owner of (Killing Unit))]) + 1
    • -----Do stuff with this new number-----
"Kills" is an integer array variable.
 
Status
Not open for further replies.
Back
Top