PB_and_J
level 85 anti-spammer
- Reaction score
- 41
Ok so I have a multiboard that keeps track of kills and deaths. The problem is when some one dies, it will display the message that I want it to display 4 times, creates 4 countdown times that show when the hero will revive and changes the number in Every colum/row.
Here are all my triggers related to my multiboard
theres the one for when some one kills some one else
and theres the one for when some 1 dies
Any help would be greatly appreciated and thx in advance.
Here are all my triggers related to my multiboard
Code:
Unit - A unit Dies
((Dying unit) is A Hero) Equal to True
Set Kill_Count[(Player number of (Owner of (Killing unit)))] = (Kill_Count[(Player number of (Owner of (Killing unit)))] + 1)
Multiboard - Set the text for (Last created multiboard) item in column 3, row Multiboard_Spots[((Player number of (Owner of (Killing unit))) + 1)] to (String(Kill_Count[(Player number of (Owner of (Killing unit)))]))
Multiboard - Set the text for (Last created multiboard) item in column 3, row List to 0
Code:
Unit - A unit Dies
((Dying unit) is A Hero) Equal to True
Set Death_Count[(Player number of (Owner of (Killing unit)))] = Death_Count[(Player number of (Owner of (Killing unit)))]
Multiboard - Set the text for (Last created multiboard) item in column 4, row Multiboard_Spots[((Player number of (Owner of (Killing unit))) + 1)] to (String(Kill_Count[(Player number of (Owner of (Killing unit)))]))
Multiboard - Set the text for (Last created multiboard) item in column 4, row List to 0
Any help would be greatly appreciated and thx in advance.


