• Mods are now organized as resources. Use the Mods link above to browse for or submit a mod, tool, or prefab.

    The TFP Official Modding Forum Policy establishes the rules and guidelines for mod creators and mod users.

Rock to sand conversion

Ornias

Refugee
Currently 1 stone = 1 sand. I want to change that to 1 stone = 5 sand. Where do I find that in the xml's?

 
recipes.xml - line 2822.

Although editing the core file is a bad idea, obviously. You'd be better off making recipe changes in a small modlet.

So using something like:

Code:
<set xpath="/recipes/recipe[@name='resourceCrushedSand']/@count">5</set>
 
Back
Top