aboutsummaryrefslogtreecommitdiff
path: root/Northstar.Coop/mod.json
blob: b4dfaeb273714bf8660b22b0290f3b045d081ff9 (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"
			}
		},
	],
}