From a107c7ecb0f85632d6142ec0782d681ae4d94343 Mon Sep 17 00:00:00 2001 From: INeedBots Date: Thu, 3 Dec 2020 21:25:52 -0600 Subject: [PATCH] nerf iw4credits --- userraw/scripts/bots_pvb.gsc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/userraw/scripts/bots_pvb.gsc b/userraw/scripts/bots_pvb.gsc index 90e3178..83459a2 100644 --- a/userraw/scripts/bots_pvb.gsc +++ b/userraw/scripts/bots_pvb.gsc @@ -16,6 +16,16 @@ init() level thread watchCheater(); level thread watchBotCrackedClass(); + + level thread watchBoxmap(); +} + +watchBoxmap() +{ + if (getDvar("mapname") == "iw4_credits") + setDvar("scr_spawnsimple", 1); + else + setDvar("scr_spawnsimple", 0); } watchCheater()