0 of 0

File information

Last updated

Original upload

Created by

Drake0713

Uploaded by

Drake0713

Virus scan

Safe to use

About this mod

A simple mod to ALWAYS get all of the crafting resources when you recycle an item; whether it be just an upgrade or the whole weapon/armor.

Permissions and credits
Donations
I looked for this and couldn't find it anywhere else so I made it myself.
I found three files which looked promising:

packs\data.spk\attributes\float_defaults.sli
<float type="TALENT_RECYCLE_BONUS" default="0.f" />

packs\data.spk\items\craft\craft_ingredients_autogen.sli
<craftSettings recyclingChance="50"/>

packs\data.spk\items\items_autogen\items_autogen_equipements.sli
<recyclingResults><itemResult id="ing_ore_metal1" count="2" chance="50"/></recyclingResults>

The first one I didn't really want to mess with since it read to me like it'd ADD onto the base chance and perhaps even multiple times (per talent tier maybe)
Setting it to "50.f" might or might not have achieved the desired result, but I never really tested it.  Still I could imagine you *might* be able to edit this value to eg "17.f" and then end up with a 101% chance at tier 3... maybe

The second one didn't seem to have any effect when set to "100"

But the third one, that was exactly what I needed... the only issue is that this file is a VERY common modding target; so while this mod will work in isolation, if another mod edits this file then there will be conflicts.  In such a case I'll provide instructions on how you can apply my method to the conflicting mod.

The gist is this; if when trying to install this mod - there is ALREADY a file with the same name there, then just open THAT already existing file with a text editor and replace every instance of chance="50" with chance="100"
This is A LOT easier with Notepad++ which I would highly recommend getting, just for that "replace all" function if nothing else