[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.
 
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.
Back
Top