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

[General] Score per second

Status
Not open for further replies.
Level 3
Joined
Jan 10, 2012
Messages
43
I want to make a multiboard for every playing player in-game and state the score beside their name. The score is 0 at start and every wave their alive, they get 1 points per second. The score won't increase if the player is dead.

The problem is I don't know how to do all of it including the multiboard.
 
Level 19
Joined
Aug 8, 2007
Messages
2,765
Not gonna copy and paste a WE trigger so.. put this on your end wave trigger that starts a wait timer and the next wave

If ("Player's Unit" is Alive) == True than
set udg_yourScore = udg_yourScore + 1
than update your multiboard with udg_yourScore
 
Status
Not open for further replies.
Top