diff --git a/mods/Config Files/BepInEx/config/com.mpstark.DynamicMaps.cfg b/mods/Config Files/BepInEx/config/com.mpstark.DynamicMaps.cfg index 4e3737d..8a9653b 100644 --- a/mods/Config Files/BepInEx/config/com.mpstark.DynamicMaps.cfg +++ b/mods/Config Files/BepInEx/config/com.mpstark.DynamicMaps.cfg @@ -259,7 +259,7 @@ Centering On Player Zoom Level = 0.15 # Setting type: Single # Default value: 0 # Acceptable value range: From 0 to 15 -Main map zoom = 2.224949 +Main map zoom = 2.593422 ## The keyboard shortcut to peek at the map # Setting type: KeyboardShortcut diff --git a/mods/Looting Bots/user/mods/Skwizzy-LootingBots-ServerMod/config/config.json b/mods/Looting Bots/user/mods/Skwizzy-LootingBots-ServerMod/config/config.json index 7080069..1a76132 100644 --- a/mods/Looting Bots/user/mods/Skwizzy-LootingBots-ServerMod/config/config.json +++ b/mods/Looting Bots/user/mods/Skwizzy-LootingBots-ServerMod/config/config.json @@ -1,4 +1,4 @@ { "pmcSpawnWithLoot": true, - "scavSpawnWithLoot": true + "scavSpawnWithLoot": false } \ No newline at end of file diff --git a/mods/Progressive Bot System/user/mods/acidphantasm-progressivebotsystem/config/config.jsonc b/mods/Progressive Bot System/user/mods/acidphantasm-progressivebotsystem/config/config.jsonc index 97728dc..6cd5f3d 100644 --- a/mods/Progressive Bot System/user/mods/acidphantasm-progressivebotsystem/config/config.jsonc +++ b/mods/Progressive Bot System/user/mods/acidphantasm-progressivebotsystem/config/config.jsonc @@ -15,9 +15,9 @@ // enableSafeGuard - Enables preventing weapon importing from bastardizing vanilla weapons. If you disable this, you will get cursed vanilla weapons. // Higher weights = more often. Lower weights = less often. If you add a LOT of mod weapons, I suggest using a lower value. // REVIEW THE APBS LOGS TO TUNE YOUR CONFIG. (\user\mods\acidphantasm-progressivebotsystem\logs) - "enableModdedWeapons": false, - "enableModdedEquipment": false, - "enableModdedClothing": false, + "enableModdedWeapons": true, + "enableModdedEquipment": true, + "enableModdedClothing": true, "initalTierAppearance": 3, "pmcWeaponWeights": 10, "scavWeaponWeights": 1, diff --git a/mods/Skeleton Key/user/mods/boogle-skeletonkey/config/config.json b/mods/Skeleton Key/user/mods/boogle-skeletonkey/config/config.json index ccddc0b..bc29e92 100644 --- a/mods/Skeleton Key/user/mods/boogle-skeletonkey/config/config.json +++ b/mods/Skeleton Key/user/mods/boogle-skeletonkey/config/config.json @@ -7,6 +7,6 @@ "578f8778245977358849a9b5": 8, "578f87b7245977356274f2cd": 5 }, - "BotDropChance": 0, + "BotDropChance": 0.05, "BannedBots": ["assault", "assaultgroup", "bear", "exusec", "usec", "pmcbear", "pmcbot", "pmcusec", "followerBully", "followerGluharAssault", "followerGluharScout", "followerGluharSecurity", "followerGluharSnipe", "followerKojaniy", "followerSanitar", "followerTagilla", "followerBirdEye", "followerBigPipe", "followerZryachiy", "followerTest", "followerBoar", "followerBoarClose1", "followerBoarClose2", "followerKolontayAssault", "followerKolontaySecurity"] } diff --git a/mods/Skeleton Key/user/mods/boogle-skeletonkey/src/mod.js b/mods/Skeleton Key/user/mods/boogle-skeletonkey/src/mod.js index e6528e3..51fb7a3 100644 --- a/mods/Skeleton Key/user/mods/boogle-skeletonkey/src/mod.js +++ b/mods/Skeleton Key/user/mods/boogle-skeletonkey/src/mod.js @@ -96,8 +96,8 @@ class Mod { this.addToStaticLoot(container, containerId, skeletonKeyId, dropchance); // Adds the Skeleton Key to jackets this.addToStaticLoot(container, containerId, keycardId, dropchance); // Adds the Skeleton Key to jackets } - //this.addToBossLoot(container, skeletonKeyId, botDropChance, bannedBots); // Adds the Skeleton Key to bosses - //this.addToBossLoot(container, keycardId, botDropChance, bannedBots); // Adds the Skeleton Keycard to bosses + this.addToBossLoot(container, skeletonKeyId, botDropChance, bannedBots); // Adds the Skeleton Key to bosses + this.addToBossLoot(container, keycardId, botDropChance, bannedBots); // Adds the Skeleton Keycard to bosses } postSptLoad(container) { const db = container.resolve("DatabaseServer"); diff --git a/mods/Skeleton Key/user/mods/boogle-skeletonkey/src/mod.ts b/mods/Skeleton Key/user/mods/boogle-skeletonkey/src/mod.ts index fdf4568..839773f 100644 --- a/mods/Skeleton Key/user/mods/boogle-skeletonkey/src/mod.ts +++ b/mods/Skeleton Key/user/mods/boogle-skeletonkey/src/mod.ts @@ -138,8 +138,8 @@ class Mod implements IPostDBLoadMod, IPostSptLoadMod } - //this.addToBossLoot(container, skeletonKeyId, botDropChance, bannedBots); // Adds the Skeleton Key to bosses - //this.addToBossLoot(container, keycardId, botDropChance, bannedBots); // Adds the Skeleton Keycard to bosses + this.addToBossLoot(container, skeletonKeyId, botDropChance, bannedBots); // Adds the Skeleton Key to bosses + this.addToBossLoot(container, keycardId, botDropChance, bannedBots); // Adds the Skeleton Keycard to bosses } public postSptLoad(container: DependencyContainer): void