aboutsummaryrefslogtreecommitdiff
path: root/Northstar.Coop/mod.json
blob: f4fafbf9268f8fe54b563627a74d955e27fa6615 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
	"Name" : "Northstar.Coop",
	"Description" : "Allows the singleplayer campaign to be played in multiplayer",

	"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"
			}
		}
	]
}