Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - SteamPunk_Devil

#1
Help / How are recipes linked to workbenches?
August 24, 2014, 07:23:29 PM
I've been looking through the recipe def and I can't see where the workbench is defined could someone point it out to me?

[attachment deleted by admin: too old]
#2
Help / Recipes not working
August 23, 2014, 11:21:51 PM
I've spent the last couple of hours playing around with modding and I've got stuck with recipes, should this code work?   


<RecipeDefs>

<RecipeDef>
<defName>PrepIceCreamBase</defName>
<label>Prepare a base for ice cream</label>
<description>Just Add Flavour</description>
<jobString>Cooking fine meal.</jobString>
<workAmount>400</workAmount>
<workTimeSkillNeed>CookTime</workTimeSkillNeed>
<workEffect>Cook</workEffect>
        <sustainerSoundDef>Recipe_CookMeal</sustainerSoundDef>
         <ingredients>
<li>
<filter>
<thingDefs>
<li>Milk</li>
</thingDefs>
</filter>
<count>7</count>
</li>
<li>
<filter>
<thingDefs>
<li>Sugar</li>
</thingDefs>
</filter>
<count>5</count>
</li>
</ingredients>
<products>
<li>
<thingDef>IceBase</thingDef>
<count>1</count>
</li>
</products>
<skillGains>
<li>
<skill>Cooking</skill>
<xp>110</xp>
</li>
</skillGains>
</RecipeDef>
</RecipeDefs>