diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-12-30 02:43:37 +0000 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-12-30 02:43:37 +0000 |
commit | ba9988a1be3baab498e7dd9dbaf191266653481a (patch) | |
tree | 976020c28b60fc59490a70e70b90653d8993bbc3 /_gamemode_ps.nut | |
parent | 7ec925302424beef8a76bcac454ca900cd3f558a (diff) | |
download | NorthstarMods-ba9988a1be3baab498e7dd9dbaf191266653481a.tar.gz NorthstarMods-ba9988a1be3baab498e7dd9dbaf191266653481a.zip |
remove unnecessary files from prs
Diffstat (limited to '_gamemode_ps.nut')
-rw-r--r-- | _gamemode_ps.nut | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/_gamemode_ps.nut b/_gamemode_ps.nut deleted file mode 100644 index 7eec7c89..00000000 --- a/_gamemode_ps.nut +++ /dev/null @@ -1,27 +0,0 @@ -global function GamemodePs_Init
-
-void function GamemodePs_Init()
-{
- Riff_ForceTitanAvailability( eTitanAvailability.Never )
-
- AddCallback_OnPlayerKilled( GiveScoreForPlayerKill )
- ScoreEvent_SetupEarnMeterValuesForMixedModes()
- SetTimeoutWinnerDecisionFunc( CheckScoreForDraw )
-
-}
-
-void function GiveScoreForPlayerKill( entity victim, entity attacker, var damageInfo )
-{
- if ( victim != attacker && victim.IsPlayer() && attacker.IsPlayer() || GetGameState() != eGameState.Playing )
- AddTeamScore( attacker.GetTeam(), 1 )
-}
-
-int function CheckScoreForDraw()
-{
- if (GameRules_GetTeamScore(TEAM_IMC) > GameRules_GetTeamScore(TEAM_MILITIA))
- return TEAM_IMC
- else if (GameRules_GetTeamScore(TEAM_MILITIA) > GameRules_GetTeamScore(TEAM_IMC))
- return TEAM_MILITIA
-
- return TEAM_UNASSIGNED
-}
\ No newline at end of file |