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

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.
 
Level 14
Joined
Aug 31, 2009
Messages
775
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.
Top