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

Messages - SteamPunk_Devil

#1
You should do this for armor as well
#2
Help / Re: How are recipes linked to workbenches?
August 24, 2014, 09:08:49 PM
Do I need to define everything I use in the the mod even stuff in vanilla?
#3
Help / Re: How are recipes linked to workbenches?
August 24, 2014, 08:24:21 PM
Aha thanks I was looking to put the cooking stove in the recipe not the recipe in the cooking stove
#4
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]
#5
Help / Re: Recipes not working
August 24, 2014, 03:17:57 PM
here

[attachment deleted by admin: too old]
#8
Help / Re: Recipes not working
August 24, 2014, 06:52:01 AM
Tried that is not giving a error its just not available when I  try to make a new recipe from the cook stove
#9
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>