Intro:
I have 4 Objects in my game: Player, Monster (100x), Bullet, Particles.
And 3 variables (Hit Count, Killed, Soul).
Events:
1) On left mouse button click - Player spawn obj. Bullet;
2) On collision with Bullet & Monster - Bullet spawn obj. Particles;
- Add 1 to "Hit Count";
3) "Hit Count" = 4 - Monster destroy;�
- Add 1 to "Killed";
<font color=red>The problem:</font>
I thought that how many monsters are destroyed, so many + to "Killed". But if 2 (3 \ 4 \ ...) monster are destroyed together, to "Killed" + only 1, how to fix it?
Help!!!