diff options
author | Jack <66967891+ASpoonPlaysGames@users.noreply.github.com> | 2024-01-29 16:12:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-29 17:12:10 +0100 |
commit | c8193f64ff169441ef9a359af126a99121040224 (patch) | |
tree | 40a372b5e03d91e6e1e61c50321cfc4ac6072245 /Northstar.CustomServers/mod | |
parent | 14561cf90f3f80ad844803bdb621c6bd720bdc55 (diff) | |
download | NorthstarMods-c8193f64ff169441ef9a359af126a99121040224.tar.gz NorthstarMods-c8193f64ff169441ef9a359af126a99121040224.zip |
Scale pilot kill core gain properly for mixed modes (#702)
Closes #682
Diffstat (limited to 'Northstar.CustomServers/mod')
-rw-r--r-- | Northstar.CustomServers/mod/scripts/vscripts/mp/_score.nut | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/mp/_score.nut b/Northstar.CustomServers/mod/scripts/vscripts/mp/_score.nut index be20982d..aba1d540 100644 --- a/Northstar.CustomServers/mod/scripts/vscripts/mp/_score.nut +++ b/Northstar.CustomServers/mod/scripts/vscripts/mp/_score.nut @@ -304,7 +304,7 @@ void function ScoreEvent_SetupEarnMeterValuesForMixedModes() // mixed modes in t { // todo needs earn/overdrive values // player-controlled stuff - ScoreEvent_SetEarnMeterValues( "KillPilot", 0.07, 0.15 ) + ScoreEvent_SetEarnMeterValues( "KillPilot", 0.07, 0.15, 0.33 ) // 5% for titan cores ScoreEvent_SetEarnMeterValues( "KillTitan", 0.0, 0.15 ) ScoreEvent_SetEarnMeterValues( "TitanKillTitan", 0.0, 0.0 ) // unsure ScoreEvent_SetEarnMeterValues( "PilotBatteryStolen", 0.0, 0.35 ) // this actually just doesn't have overdrive in vanilla even |