From 806421062bd1bed902d1e6d40d71532b20280e78 Mon Sep 17 00:00:00 2001 From: Ambroise Garel <47314805+akaAgar@users.noreply.github.com> Date: Sat, 20 Sep 2025 17:42:39 +0200 Subject: [PATCH] AWACS, bombers and transports kills on the ramp now don't suffer a -50% score penalty --- Script/The Universal Mission/PlayerScore.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Script/The Universal Mission/PlayerScore.lua b/Script/The Universal Mission/PlayerScore.lua index 81b7678..173f288 100644 --- a/Script/The Universal Mission/PlayerScore.lua +++ b/Script/The Universal Mission/PlayerScore.lua @@ -55,7 +55,12 @@ do if not objectDesc or not objectDesc.attributes then return 10 end -- No description, assume a default value of 10 points local groundMultiplier = 1 - if not killedObject:inAir() then groundMultiplier = 0.5 end -- Aircraft killed on the ground are worth less points + if not killedObject:inAir() then + -- Aircraft killed on the ground are worth less points, except AWACS, bombers and transports + if not objectDesc.attributes["AWACS"] and not objectDesc.attributes["Transports"] and not objectDesc.attributes["Strategic bombers"] then + groundMultiplier = 0.5 + end + end -- Misc if objectDesc.attributes["Missiles"] then return 10 end