Disabled Boss Skeleton Key(Card) Spawning, Again
This commit is contained in:
parent
d3e8098b26
commit
79c3c5eec2
|
@ -259,7 +259,7 @@ Centering On Player Zoom Level = 0.15
|
||||||
# Setting type: Single
|
# Setting type: Single
|
||||||
# Default value: 0
|
# Default value: 0
|
||||||
# Acceptable value range: From 0 to 15
|
# Acceptable value range: From 0 to 15
|
||||||
Main map zoom = 2.080739
|
Main map zoom = 4.221908
|
||||||
|
|
||||||
## The keyboard shortcut to peek at the map
|
## The keyboard shortcut to peek at the map
|
||||||
# Setting type: KeyboardShortcut
|
# Setting type: KeyboardShortcut
|
||||||
|
|
|
@ -3,9 +3,11 @@
|
||||||
"KeycardPrice": 5000000,
|
"KeycardPrice": 5000000,
|
||||||
"KeyUses": 10,
|
"KeyUses": 10,
|
||||||
"KeycardUses": 6,
|
"KeycardUses": 6,
|
||||||
"ContainersDropChance": {
|
"Containers": {
|
||||||
"578f8778245977358849a9b5": 8,
|
"578f8778245977358849a9b5": 8,
|
||||||
"578f87b7245977356274f2cd": 5
|
"578f87b7245977356274f2cd": 5,
|
||||||
|
"64d11702dd0cd96ab82c3280": 10,
|
||||||
|
"66acff0a1d8e1083b303f5af": 10
|
||||||
},
|
},
|
||||||
"BotDropChance": 0.05,
|
"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"]
|
"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"]
|
||||||
|
|
|
@ -96,8 +96,8 @@ class Mod {
|
||||||
this.addToStaticLoot(container, containerId, skeletonKeyId, dropchance); // Adds the Skeleton Key to jackets
|
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.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, skeletonKeyId, botDropChance, bannedBots); // Adds the Skeleton Key to bosses
|
||||||
this.addToBossLoot(container, keycardId, botDropChance, bannedBots); // Adds the Skeleton Keycard to bosses
|
//this.addToBossLoot(container, keycardId, botDropChance, bannedBots); // Adds the Skeleton Keycard to bosses
|
||||||
}
|
}
|
||||||
postSptLoad(container) {
|
postSptLoad(container) {
|
||||||
const db = container.resolve("DatabaseServer");
|
const db = container.resolve("DatabaseServer");
|
||||||
|
|
|
@ -138,8 +138,8 @@ class Mod implements IPostDBLoadMod, IPostSptLoadMod
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
this.addToBossLoot(container, skeletonKeyId, botDropChance, bannedBots); // Adds the Skeleton Key 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
|
//this.addToBossLoot(container, keycardId, botDropChance, bannedBots); // Adds the Skeleton Keycard to bosses
|
||||||
}
|
}
|
||||||
|
|
||||||
public postSptLoad(container: DependencyContainer): void
|
public postSptLoad(container: DependencyContainer): void
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
# This file was automatically generated by Mod Organizer.
|
||||||
-Unsorted_separator
|
-Unsorted_separator
|
||||||
-Visceral Combat
|
-Visceral Combat
|
||||||
-SWAG + DONUTS
|
-SWAG + DONUTS
|
||||||
|
|
Loading…
Reference in New Issue