From 43b5ccfb472694f33241689d28427de86b067524 Mon Sep 17 00:00:00 2001 From: GetParanoid Date: Fri, 18 Jul 2025 23:44:52 -0700 Subject: [PATCH 1/3] moar changes --- BepInEx/config/MOAR.settings.cfg | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/BepInEx/config/MOAR.settings.cfg b/BepInEx/config/MOAR.settings.cfg index d0cf5eb..68561db 100644 --- a/BepInEx/config/MOAR.settings.cfg +++ b/BepInEx/config/MOAR.settings.cfg @@ -44,12 +44,12 @@ Moar Preset = Random ## Enable/Disable preset announce preset on raid start # Setting type: Boolean # Default value: true -Preset Announce On/Off = true +Preset Announce On/Off = false ## Announces preset # Setting type: KeyboardShortcut # Default value: End -Announce Key = End +Announce Key = False ## Pulls all server settings from server # Setting type: String @@ -201,9 +201,9 @@ ScavWaveDistribution = 0.6 ## Determines the weighting of spawns, (0.1) waves will spawn mostly at the beginning, (1) Default: waves are spread evenly, or (1.9) spawns will appear near the end of the raid of the raid # Setting type: Double -# Default value: 0.3 +# Default value: 0.5 # Acceptable value range: From 0.1 to 1.9 -PmcWaveDistribution = 0.3 +PmcWaveDistribution = 0.5 ## Multiplies wave counts seen in the server's mapConfig.json by this number # Setting type: Double From 33dab33366f3492ccbc47fb19ac1e75e9a6bd193 Mon Sep 17 00:00:00 2001 From: GetParanoid Date: Fri, 18 Jul 2025 23:45:09 -0700 Subject: [PATCH 2/3] increase looting dist --- BepInEx/config/me.skwizzy.lootingbots.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BepInEx/config/me.skwizzy.lootingbots.cfg b/BepInEx/config/me.skwizzy.lootingbots.cfg index e6a463a..6721493 100644 --- a/BepInEx/config/me.skwizzy.lootingbots.cfg +++ b/BepInEx/config/me.skwizzy.lootingbots.cfg @@ -18,7 +18,7 @@ Enable corpse line of sight check = false ## Distance (in meters) a bot is able to detect a corpse # Setting type: Single # Default value: 80 -Detect corpse distance = 80 +Detect corpse distance = 120 ## Enables container looting for the selected bot types # Setting type: BotType @@ -35,7 +35,7 @@ Enable container line of sight check = false ## Distance (in meters) a bot is able to detect a container # Setting type: Single # Default value: 80 -Detect container distance = 80 +Detect container distance = 120 ## Enables loose item looting for the selected bot types # Setting type: BotType @@ -52,7 +52,7 @@ Enable item line of sight check = false ## Distance (in meters) a bot is able to detect an item # Setting type: Single # Default value: 80 -Detect item distance = 80 +Detect item distance = 120 ## Enable different levels of log messages to show in the logs # Setting type: LogLevel From 2c933fd1f006de559be0248dd8c9d86129da95b4 Mon Sep 17 00:00:00 2001 From: GetParanoid Date: Fri, 18 Jul 2025 23:45:33 -0700 Subject: [PATCH 3/3] MOAR ai tweaks --- .../DewardianDev-MOAR/config/PresetWeightings.json | 14 +++++++------- user/mods/DewardianDev-MOAR/config/Presets.json | 6 +++--- user/mods/DewardianDev-MOAR/config/config.json | 2 +- user/mods/DewardianDev-MOAR/config/mapConfig.json | 8 ++++---- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/user/mods/DewardianDev-MOAR/config/PresetWeightings.json b/user/mods/DewardianDev-MOAR/config/PresetWeightings.json index d872391..b77b322 100644 --- a/user/mods/DewardianDev-MOAR/config/PresetWeightings.json +++ b/user/mods/DewardianDev-MOAR/config/PresetWeightings.json @@ -1,11 +1,11 @@ { - "more-scavs-and-pmcs": 45, - "rogue-invasion": 10, - "raider-invasion": 10, - "minor-boss-invasion": 10, - "main-boss-guaranteed": 10, - "main-boss-guaranteed-roaming": 10, - "insanity": 5, + "more-scavs-and-pmcs": 100, + "rogue-invasion": 0, + "raider-invasion": 0, + "minor-boss-invasion": 0, + "main-boss-guaranteed": 0, + "main-boss-guaranteed-roaming": 0, + "insanity": 0, "live-like": 0, "quiet-raids": 0, "more-scavs": 0, diff --git a/user/mods/DewardianDev-MOAR/config/Presets.json b/user/mods/DewardianDev-MOAR/config/Presets.json index 13c3dd5..8e1918e 100644 --- a/user/mods/DewardianDev-MOAR/config/Presets.json +++ b/user/mods/DewardianDev-MOAR/config/Presets.json @@ -25,10 +25,10 @@ "more-scavs-and-pmcs": { "scavGroupChance": 0.3, "scavMaxGroupSize": 5, - "pmcGroupChance": 0.3, + "pmcGroupChance": 0.5, "pmcMaxGroupSize": 5, - "scavWaveQuantity": 1.4, - "pmcWaveQuantity": 1.2 + "scavWaveQuantity": 2.2, + "pmcWaveQuantity": 2.0 }, "delayed-scavs": { "scavWaveDistribution": 1.5 diff --git a/user/mods/DewardianDev-MOAR/config/config.json b/user/mods/DewardianDev-MOAR/config/config.json index c4cfff0..cda36a1 100644 --- a/user/mods/DewardianDev-MOAR/config/config.json +++ b/user/mods/DewardianDev-MOAR/config/config.json @@ -9,7 +9,7 @@ "scavWaveQuantity": 1, "startingPmcs": true, - "pmcWaveDistribution": 0.3, + "pmcWaveDistribution": 0.5, "pmcWaveQuantity": 1, "randomSpawns": false, diff --git a/user/mods/DewardianDev-MOAR/config/mapConfig.json b/user/mods/DewardianDev-MOAR/config/mapConfig.json index 863c76b..97c8fec 100644 --- a/user/mods/DewardianDev-MOAR/config/mapConfig.json +++ b/user/mods/DewardianDev-MOAR/config/mapConfig.json @@ -132,9 +132,9 @@ "mapCullingNearPointValuePlayer": 12, "mapCullingNearPointValuePmc": 6, "mapCullingNearPointValueScav": 6, - "maxBotCapOverride": 18, + "maxBotCapOverride": 30, "spawnMinDistance": 30, - "pmcWaveCount": 10, + "pmcWaveCount": 15, "scavWaveCount": 20, "zombieWaveCount": 13 }, @@ -163,7 +163,7 @@ "mapCullingNearPointValuePlayer": 6, "mapCullingNearPointValuePmc": 5, "mapCullingNearPointValueScav": 1, - "maxBotCapOverride": 15, + "maxBotCapOverride": 25, "spawnMinDistance": 15, "pmcWaveCount": 10, "scavWaveCount": 18, @@ -176,7 +176,7 @@ "mapCullingNearPointValuePlayer": 6, "mapCullingNearPointValuePmc": 5, "mapCullingNearPointValueScav": 1, - "maxBotCapOverride": 15, + "maxBotCapOverride": 25, "spawnMinDistance": 15, "pmcWaveCount": 12, "scavWaveCount": 18,