• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

[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