[B42] Wear Vanilla Webbing with Everything
Allows vanilla webbing to be worn with shoulder holster, fanny packs and other things it normally takes off.
- [B42] BackpackPlusSatchels – Allows you to wear satchels with backpacks/any combo.
Q: what does this mod do?:
Mod creates a new body clothing location "TorsoRigEx" then adjusts the 4 vanilla webbings in game to move it to said body location, which in turn allows it to be worn with fannypacks, etc because the vanilla body location for webbings removes all fannypacks + other stuff when equipped.
local group = BodyLocations.getGroup("Human")
group:getOrCreateLocation("TorsoRigEX")
local item = ScriptManager.instance:getItem("Bag_ALICE_BeltSus")
if item then
item:DoParam("BodyLocation = TorsoExtraVest")
item:DoParam("CanBeEquipped = TorsoRigEX")
end
—
local item = ScriptManager.instance:getItem("Bag_ALICE_BeltSus_Camo")
if item then
item:DoParam("BodyLocation = TorsoExtraVest")
item:DoParam("CanBeEquipped = TorsoRigEX")
end
—
local item = ScriptManager.instance:getItem("Bag_ALICE_BeltSus_Green")
if item then
item:DoParam("BodyLocation = TorsoExtraVest")
item:DoParam("CanBeEquipped = TorsoRigEX")
end
—
local item = ScriptManager.instance:getItem("Bag_ChestRig")
if item then
item:DoParam("BodyLocation = TorsoExtraVest")
item:DoParam("CanBeEquipped = TorsoRigEX")
end
shouldn’t be any bugs, errors or mod incompatibilities but if somehow there are, drop them in comments.
Workshop ID: 3401228213
Mod ID: webbingsatchel