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

Leaderboard - Kills

Status
Not open for further replies.
Level 8
Joined
Oct 2, 2004
Messages
417
I'm making a snowball war map thing, where you throw snowballs at other players to KO them. How do I create a leaderboard that will record number of kills? How do I add a point to the board when a kill is made?

Also, does killing a unit who then revive with Reincarnation add a point?
 
Level 9
Joined
Nov 27, 2004
Messages
465
reincarnation will be a point IF
the trigger like this would be:

unit killed

killing unit = player(x)
killed unit = unit-type "la la la"

set "kill" = ("kill"+1)
chande leaderboard to kills "kill"
revive killed unit
_______________
about spawn point you may just add to that trigger next commands:

set "kill" = ("kill"+1)
chande leaderboard to kills "kill"
revive killed unit
move(instantly) killed unit to (or random or fix ,as map maker wants) location
 
Status
Not open for further replies.
Top