aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers/mod.json
diff options
context:
space:
mode:
authorJack <66967891+ASpoonPlaysGames@users.noreply.github.com>2023-09-02 17:52:06 +0100
committerGitHub <noreply@github.com>2023-09-02 18:52:06 +0200
commit1d95b7d5f3a4b7176456c94b147f0382de04f18e (patch)
tree1678c273b68985fe54cde59154a37a47b89bf419 /Northstar.CustomServers/mod.json
parentc7e50b28fe31e20b064f812758d8a0f5e889ea74 (diff)
downloadNorthstarMods-1d95b7d5f3a4b7176456c94b147f0382de04f18e.tar.gz
NorthstarMods-1d95b7d5f3a4b7176456c94b147f0382de04f18e.zip
Progression system (#655)
This also can't hurt right? --------- Co-authored-by: uniboi <64006268+uniboi@users.noreply.github.com>
Diffstat (limited to 'Northstar.CustomServers/mod.json')
-rw-r--r--Northstar.CustomServers/mod.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/Northstar.CustomServers/mod.json b/Northstar.CustomServers/mod.json
index 4f19307d2..8f5508c82 100644
--- a/Northstar.CustomServers/mod.json
+++ b/Northstar.CustomServers/mod.json
@@ -53,6 +53,11 @@
{
"Name": "ns_allow_kill_commands",
"DefaultValue": "0"
+ },
+ {
+ "Name": "ns_progression_enabled",
+ "DefaultValue": "0",
+ "Flags": "ARCHIVE_PLAYERPROFILE"
}
],
"Scripts": [
@@ -150,6 +155,19 @@
"ServerCallback": {
"After": "AiTurretSentry_Init"
}
+ },
+ {
+ "Path": "sh_progression.nut",
+ "RunOn": "UI || SERVER || CLIENT",
+ "ServerCallback": {
+ "Before": "Progression_Init"
+ },
+ "ClientCallback": {
+ "Before": "Progression_Init"
+ },
+ "UICallback": {
+ "Before": "Progression_Init"
+ }
}
]
}