Atheosis Posted December 16, 2015 Share Posted December 16, 2015 For the life of me I can't seem to find an .xml that has starting equipment data. Any help would be much appreciated. Link to comment Share on other sites More sharing options...
Deleted2770933User Posted December 16, 2015 Share Posted December 16, 2015 (edited) Here you go: http://www.nexusmods.com/witcher3/mods/547/? This is the only mod I know of, that does this. Maybe you can use this as a basis on which to make your own mod. Edited December 16, 2015 by Guest Link to comment Share on other sites More sharing options...
Wolfmark Posted December 16, 2015 Share Posted December 16, 2015 Check the script files. For example the starting alchemy recipes and crafting schematics are added in W3PlayerWitcher::OnSpawned (playerWitcher.ws) function: // Add starting alchemy recipes AddAlchemyRecipe('Recipe for Swallow 1',true,true); AddAlchemyRecipe('Recipe for Cat 1',true,true); AddAlchemyRecipe('Recipe for White Honey 1',true,true); AddAlchemyRecipe('Recipe for Samum 1',true,true); AddAlchemyRecipe('Recipe for Grapeshot 1',true,true); AddAlchemyRecipe('Recipe for Specter Oil 1',true,true); AddAlchemyRecipe('Recipe for Necrophage Oil 1',true,true); AddAlchemyRecipe('Recipe for Alcohest 1',true,true); // CRAFTING ITEM SCHEMATICS AddStartingSchematics();and // New mutagen recipes, added here to work with old saves AddAlchemyRecipe('Recipe for Mutagen red',true,true); AddAlchemyRecipe('Recipe for Mutagen green',true,true); AddAlchemyRecipe('Recipe for Mutagen blue',true,true); AddAlchemyRecipe('Recipe for Greater mutagen red',true,true); AddAlchemyRecipe('Recipe for Greater mutagen green',true,true); AddAlchemyRecipe('Recipe for Greater mutagen blue',true,true); AddCraftingSchematic('Starting Armor Upgrade schematic 1',true,true);The Wolven Hour potion is added in W3PlayerWitcher::ApplyPatchFixes function (playerWitcher.ws): //potion reducing level requirement if(FactsQuerySum("LevelReqPotGiven") < 1) { FactsAdd("LevelReqPotGiven"); inv.AddAnItem('Wolf Hour', 1, false, false, true); }Search for a file named temp.ws for few examples, so you don't have too look in the XML files for every item name. Link to comment Share on other sites More sharing options...
Atheosis Posted December 16, 2015 Author Share Posted December 16, 2015 Thanks a lot guys! Link to comment Share on other sites More sharing options...
Recommended Posts