From 01ef6d62b769e97e3ceb545087b1aa738dd6404e Mon Sep 17 00:00:00 2001 From: SonicSoapyBoi <99328709+SonicSoapyBoi@users.noreply.github.com> Date: Mon, 5 Aug 2024 17:31:31 +0200 Subject: [PATCH] De-Julesify the mission script Disable the mission script that triggers spawngroup spawns when the tarp has been cut --- req/mission_script/brb.lua | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 req/mission_script/brb.lua diff --git a/req/mission_script/brb.lua b/req/mission_script/brb.lua new file mode 100644 index 0000000..7f65bf4 --- /dev/null +++ b/req/mission_script/brb.lua @@ -0,0 +1,9 @@ +return { + --Don't trigger the spawngroup if the tarp has been cut (should prevent cops from spawning early) +--yes, this makes the cops spawn early + [101288] = { + values = { + enabled = false + } + } +} \ No newline at end of file