It's strange but no element of this mod has a description in the inventory interface, the localizations file to add text has a different structure than other mods and no text appears in the game.
I downloaded this from the other site (7daystodiemods) and it was more recently than the last time this was updated. So, unless the op has fixed the backpack issue in this 1 I will wait. You added the backpack and it says it adds 20 slots but it only actually adds 3 slots. I noticed the issue when the vanilla quad mod was doing more than that and this makes no sense considering it says it unlocks more slots. I checked the XML and it is a simple fix to edit the effect myself there for those wondering how to fix it themselves open the mods folder, open the config folder, in the config folder find/open the item_modifiers.xml file in your preferred text editor. Once it is open find the backpack entry using the find function and under/inside that you will have the setting <passive_effect name="CarryCapacity" operation="base_add" value="3"/> Simply change the number 3 to the correct number and it will be fixed. Looks like others have noticed this too lol
Hello, and congratts for this awesome mod. I Would like to know if I can do that determinate mod items cannot be craft by players. They would received them as an award from determinate event given from an admin. I have not sure what xml file should edit for this pourpose. Appreciate your help Thank you!
22 comments
Once it is open find the backpack entry using the find function and under/inside that you will have the setting
<passive_effect name="CarryCapacity" operation="base_add" value="3"/>
Simply change the number 3 to the correct number and it will be fixed.
Looks like others have noticed this too lol
but impossible to reload my weapon with ammunition
I Would like to know if I can do that determinate mod items cannot be craft by players. They would received them as an award from determinate event given from an admin.
I have not sure what xml file should edit for this pourpose.
Appreciate your help Thank you!
https://imgur.com/jYBq2gZ
https://imgur.com/K6ePSuv
Change the following value="3" to value="8"
Change:
<item_modifier name="(V) Backpack" installable_tags="armor" modifier_tags="carryweight3" blocked_tags="noMods" type="attachment">
<property name="Extends" value="modGeneralMaster"/>
<property name="CustomIcon" value="modArmorQuadStoragePocket"/>
<property name="DescriptionKey" value="VBackpackDesc"/>
<property name="CustomIconTint" value="#1e9d16"/>
<property name="UnlockedBy" value="modArmorTripleStoragePocketSchematic"/>
<property name="TraderStageTemplate" value="modsTier3"/>
<property name="DisplayType" value="modCarryCapacity"/>
<property name="Material" value="Mleather"/>
<effect_group tiered="false">
<passive_effect name="CarryCapacity" operation="base_add" value="3"/>
<display_value name="dCarryCapacity" value="8"/>
</effect_group>
</item_modifier>
To:
<item_modifier name="(V) Backpack" installable_tags="armor" modifier_tags="carryweight3" blocked_tags="noMods" type="attachment">
<property name="Extends" value="modGeneralMaster"/>
<property name="CustomIcon" value="modArmorQuadStoragePocket"/>
<property name="DescriptionKey" value="VBackpackDesc"/>
<property name="CustomIconTint" value="#1e9d16"/>
<property name="UnlockedBy" value="modArmorTripleStoragePocketSchematic"/>
<property name="TraderStageTemplate" value="modsTier3"/>
<property name="DisplayType" value="modCarryCapacity"/>
<property name="Material" value="Mleather"/>
<effect_group tiered="false">
<passive_effect name="CarryCapacity" operation="base_add" value="8"/>
<display_value name="dCarryCapacity" value="8"/>
</effect_group>
</item_modifier>