Arma3 - SCRIPT STATS
initスクリプト
file:init.sqf [] execVM "stats.sqf";
STATSスクリプト
busyループな気がしますが..
ヒントメッセージにて east軍(相手)のカウントを表示します。
file:stats.sqf
while {true} do {
_count = {side _x == east} count allUnits;
hint format ["Enemy count is %1", _count];
sleep 3;
}
※友軍(WEST)の場合は side _x == west
表示例は下記