From 930cf5d0b79d05985d658149de81880c73247584 Mon Sep 17 00:00:00 2001 From: Jack <66967891+ASpoonPlaysGames@users.noreply.github.com> Date: Tue, 9 Dec 2025 14:32:00 +0000 Subject: [PATCH] Remove Coop as it hasn't been touched in years (#953) --- Northstar.Coop/keyvalues/playlists_v2.txt | 59 ------------------- Northstar.Coop/mod.json | 22 ------- .../mod/scripts/vscripts/sh_sp_coop.gnut | 6 -- .../scripts/vscripts/sh_sp_coop_lobby.gnut | 19 ------ 4 files changed, 106 deletions(-) delete mode 100644 Northstar.Coop/keyvalues/playlists_v2.txt delete mode 100644 Northstar.Coop/mod.json delete mode 100644 Northstar.Coop/mod/scripts/vscripts/sh_sp_coop.gnut delete mode 100644 Northstar.Coop/mod/scripts/vscripts/sh_sp_coop_lobby.gnut diff --git a/Northstar.Coop/keyvalues/playlists_v2.txt b/Northstar.Coop/keyvalues/playlists_v2.txt deleted file mode 100644 index e3a241b7..00000000 --- a/Northstar.Coop/keyvalues/playlists_v2.txt +++ /dev/null @@ -1,59 +0,0 @@ -playlists -{ - Playlists - { - sp_coop - { - inherit defaults - vars - { - name #PL_sp_coop - lobbytitle #PL_sp_coop_lobby - description #PL_sp_coop_desc - hint #PL_sp_coop_hint - abbreviation #PL_sp_coop_abbr - image ffa - - // taken from solo gamemode - always_enable_autotitans 1 - burn_meter_enabled 0 - cinematic_mode 1 - classic_mp 0 - hud_score_enabled 0 - max_players 16 - max_teams 1 - ranking_supported 0 - riff_allow_npcs 1 - riff_minimap_state 1 - riff_titan_availability 3 - riff_titan_exit_enabled 3 - rodeo_battery_disembark_to_pickup 0 - titan_build_time 300 - titan_health_bar_display default - titan_mode_change_allowed 0 - titan_rebuild_time 195 - titan_segmented_health 0 - titan_shield_regen 1 - } - - gamemodes - { - solo - { - maps - { - sp_training 1 - sp_crashsite 1 - sp_sewers1 1 - sp_boomtown_start 1 - sp_hub_timeshift 1 - sp_beacon 1 - sp_tday 1 - sp_s2s 1 - sp_skyway_v1 1 - } - } - } - } - } -} \ No newline at end of file diff --git a/Northstar.Coop/mod.json b/Northstar.Coop/mod.json deleted file mode 100644 index 5cb4daf5..00000000 --- a/Northstar.Coop/mod.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "Name": "Northstar.Coop", - "Description": "[WIP] Allows the singleplayer campaign to be played in multiplayer", - "Version": "0.0.0", - "LoadPriority": 0, - "Scripts": [ - { - "Path": "sh_sp_coop.gnut", - "RunOn": "SP" - }, - { - "Path": "sh_sp_coop_lobby.gnut", - "RunOn": "( CLIENT || SERVER ) && MP", - "ClientCallback": { - "After": "SingleplayerCoopLobby_Init" - }, - "ServerCallback": { - "After": "SingleplayerCoopLobby_Init" - } - } - ] -} \ No newline at end of file diff --git a/Northstar.Coop/mod/scripts/vscripts/sh_sp_coop.gnut b/Northstar.Coop/mod/scripts/vscripts/sh_sp_coop.gnut deleted file mode 100644 index 09293a70..00000000 --- a/Northstar.Coop/mod/scripts/vscripts/sh_sp_coop.gnut +++ /dev/null @@ -1,6 +0,0 @@ -global function IsSPCoopMode - -bool function IsSPCoopMode() -{ - return GAMETYPE == "solo" && GetCurrentPlaylistName() == "sp_coop" -} \ No newline at end of file diff --git a/Northstar.Coop/mod/scripts/vscripts/sh_sp_coop_lobby.gnut b/Northstar.Coop/mod/scripts/vscripts/sh_sp_coop_lobby.gnut deleted file mode 100644 index 59a31ee8..00000000 --- a/Northstar.Coop/mod/scripts/vscripts/sh_sp_coop_lobby.gnut +++ /dev/null @@ -1,19 +0,0 @@ -global function SingleplayerCoopLobby_Init - -void function SingleplayerCoopLobby_Init() -{ - if ( !IsLobby() ) - return - - AddPrivateMatchMode( "sp_coop" ) - - AddPrivateMatchMap( "sp_training" ) - AddPrivateMatchMap( "sp_crashsite" ) - AddPrivateMatchMap( "sp_sewers1" ) - AddPrivateMatchMap( "sp_boomtown_start" ) - AddPrivateMatchMap( "sp_hub_timeshift" ) - AddPrivateMatchMap( "sp_beacon" ) - AddPrivateMatchMap( "sp_tday" ) - AddPrivateMatchMap( "sp_s2s" ) - AddPrivateMatchMap( "sp_skyway_v1" ) -} \ No newline at end of file