- Joined
- Jun 22, 2009
- Messages
- 63
Hey, im working on a fun little minigame where you defend the computer from viruses by clicking on them to deal damage. I have a multiboard showing level, kills and clicks. But sometimes when i kill a unit, it won't give me any kills or even 2 kills. It's realy annoying and i don't know how to fix it. Please help. +rep
-
Damage System
-
Events
-
Player - Player 1 (Red) Selects a unit
-
Player - Player 2 (Blue) Selects a unit
-
-
Conditions
-
Actions
-
Set Clicks = (Clicks + 1)
-
Multiboard - Set the text for Multiboard item in column 3, row 2 to (String(Clicks))
-
Unit - Set life of (Triggering unit) to ((Life of (Triggering unit)) - 1.00)
-
-
-
Kills
-
Events
-
Unit - A unit Dies
-
-
Conditions
-
Actions
-
Set Kills = (Kills + 1)
-
Multiboard - Set the text for Multiboard item in column 2, row 2 to (String(Kills))
-
-