aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers/mod/scripts/vscripts/mp/_score.nut
diff options
context:
space:
mode:
authorBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2022-01-17 00:06:23 +0000
committerGitHub <noreply@github.com>2022-01-17 00:06:23 +0000
commitd1b696c80c5001f6b62ca41be3bf6bc5647378d0 (patch)
tree7291aa44c4f7312f7a01f9cd20a3109213f77951 /Northstar.CustomServers/mod/scripts/vscripts/mp/_score.nut
parent89863e43f4bceb2ab842335e8c3aea3c3b25b269 (diff)
parent1f6c2ce8e7a5a5ba47e773bd6173f228b507e8fd (diff)
downloadNorthstarMods-d1b696c80c5001f6b62ca41be3bf6bc5647378d0.tar.gz
NorthstarMods-d1b696c80c5001f6b62ca41be3bf6bc5647378d0.zip
Merge pull request #96 from VITALISED/scoring
Add assist medals and scoring
Diffstat (limited to 'Northstar.CustomServers/mod/scripts/vscripts/mp/_score.nut')
-rw-r--r--Northstar.CustomServers/mod/scripts/vscripts/mp/_score.nut12
1 files changed, 12 insertions, 0 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/mp/_score.nut b/Northstar.CustomServers/mod/scripts/vscripts/mp/_score.nut
index 7b86a1d84..b7fd4d520 100644
--- a/Northstar.CustomServers/mod/scripts/vscripts/mp/_score.nut
+++ b/Northstar.CustomServers/mod/scripts/vscripts/mp/_score.nut
@@ -190,6 +190,18 @@ void function ScoreEvent_TitanKilled( entity victim, entity attacker, var damage
AddPlayerScore( attacker, "TitanKillTitan", victim.GetTitanSoul().GetOwner() )
else
AddPlayerScore( attacker, "KillTitan", victim.GetTitanSoul().GetOwner() )
+
+ table<int, bool> alreadyAssisted
+ foreach( DamageHistoryStruct attackerInfo in victim.e.recentDamageHistory )
+ {
+ bool exists = attackerInfo.attacker.GetEncodedEHandle() in alreadyAssisted ? true : false
+ if( attackerInfo.attacker != attacker && !exists )
+ {
+ alreadyAssisted[attackerInfo.attacker.GetEncodedEHandle()] <- true
+ AddPlayerScore(attackerInfo.attacker, "TitanAssist" )
+ Remote_CallFunction_NonReplay( attackerInfo.attacker, "ServerCallback_SetAssistInformation", attackerInfo.damageSourceId, attacker.GetEncodedEHandle(), victim.GetEncodedEHandle(), attackerInfo.time )
+ }
+ }
}
void function ScoreEvent_NPCKilled( entity victim, entity attacker, var damageInfo )