Possible to set weights below 0.1?

+
Hi Mods.

I'm wanting some info. about modding Witcher 3. I just want to know if it's possible to set weights below 0.1. I'm attempting to do some re balancing for the W3EE mod using my own personal preferences, but I can't seem to get stuff like herbs under the 0.1.

Cheers.
 
Uncooking the game will give you access to a bunch of xml files (& other files as well). One of these xml files is gameplay\items\def_item_herbs.xml. It contains herb definitions, here's the 1st item definition in that file:
Code:
   <item
        name                           ="Allspice root"
        category                       ="alchemy_ingredient"
        stackable                      ="100"
        price                          ="5"
        weight                         ="0.1"
        localisation_key_name          ="item_name_allspice_root"
        localisation_key_description   ="item_desc_alchemy_ingredient"
        icon_path                      ="icons/inventory/ingredients/herb/allspice_root_64x64.png"
    >
        <tags>                         AlchemyIngredient, HerbGameplay, mod_alchemy
        </tags>
    </item>
You can see it's weight is set to 0.1, this is where I'd start trying to change the weights. There are other files like def_item_ingrediants.xml that you may be interested in as well.

If you dont want to uncook the entire game WolvenKit has a way to see the file structure inside the game's bundle files & choose specific files to uncook.
 
Last edited:
Got it. Just needed to edit the XML's and a script in inventoryComponent.ws.

Cheers.
 
Last edited:
Top Bottom