Jump to content
Sign in to follow this  
steggieav

Tracking total unit deaths on each side

Recommended Posts

I'm pretty new to Arma 2 editing, and I'm not sure how hard this would be, but is it possible to have a running tally of total deaths per faction? This would be useful for tracking battles between AIs to see who's winning.

Share this post


Link to post
Share on other sites

If you just want to see who's stronger, the simplest solution is to show who's alive.

Place a trigger, set its condition to true and paste this into the activation field:

0 = [] spawn
{
while {true} do
{
	hintSilent format ["West: %1\nEast: %2", {side _x == west} count allUnits, {side _x == east} count allUnits];
	sleep 0.1;
};
};

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×