Hi,
Im making a personal mod so that I can craft Project Armory weapons. I can get the crafting table to appear, I can even get the bill to queue on tab. But the colonists well not make the weapon they just stand around. I put all the items in the stockpile made sure colonists have the crafting ability toggled with right ability level, and made sure I had the right resources. Anyways Im hoping you guys can help.
credit:

Table
Im making a personal mod so that I can craft Project Armory weapons. I can get the crafting table to appear, I can even get the bill to queue on tab. But the colonists well not make the weapon they just stand around. I put all the items in the stockpile made sure colonists have the crafting ability toggled with right ability level, and made sure I had the right resources. Anyways Im hoping you guys can help.
credit:
Table
Code Select
<?xml version="1.0" encoding="utf-8" ?>
<ThingDefs>
<ThingDef Name="BuildingBase" Abstract="True">
<category>Building</category>
<soundImpactDefault>BulletImpactMetal</soundImpactDefault>
<selectable>true</selectable>
<drawerType>MapMeshAndRealTime</drawerType>
<terrainAffordanceNeeded>Light</terrainAffordanceNeeded>
<repairEffect>Repair</repairEffect>
<leaveResourcesWhenKilled>true</leaveResourcesWhenKilled>
<filthLeaving>BuildingRubble</filthLeaving>
</ThingDef>
<ThingDef ParentName="BuildingBase">
<DefName>WW1CraftingTable</DefName>
<label>WW1 Crafting Table</label>
<ThingClass>Building_WorkTable</ThingClass>
<Description>A workbench to produce weapons from the early 1900's.</Description>
<graphicPath>Things/Building/Building_Structure_WW1</graphicPath>
<graphicClass>Graphic_Single</graphicClass>
<constructEffect>ConstructWood</constructEffect>
<CostList>
<WoodLog>50</WoodLog>
<Steel>40</Steel>
</CostList>
<AltitudeLayer>Waist</AltitudeLayer>
<fillPercent>0.5</fillPercent>
<useHitPoints>True</useHitPoints>
<statBases>
<WorkToMake>1000</WorkToMake>
<MaxHitPoints>180</MaxHitPoints>
<Flammability>1.0</Flammability>
</statBases>
<Size>(3,1)</Size>
<graphicOverdraw>False</graphicOverdraw>
<DesignationCategory>Production</DesignationCategory>
<Passability>PassThroughOnly</Passability>
<pathCost>70</pathCost>
<hasInteractionCell>True</hasInteractionCell>
<interactionCellOffset>(0,0,-1)</interactionCellOffset>
<itemSurface>True</itemSurface>
<recipes>
<li>CraftLMGHuot</li>
</recipes>
<inspectorTabs>
<li>ITab_Bills</li>
</inspectorTabs>
<building>
<spawnedConceptLearnOpportunity>BillsTab</spawnedConceptLearnOpportunity>
</building>
</ThingDef>
</ThingDefs>Code Select
<?xml version="1.0" encoding="utf-8"?>
<RecipeDefs>
<RecipeDef>
<defName>CraftLMGHuot</defName>
<label>Craft LMG Huot</label>
<description>The Huot Automatic Rifle is an experimental gas piston operated light machine gun dating back to the first world war.</description>
<jobString>Building LMG Huot.</jobString>
<workAmount>3000</workAmount>
<workSpeedStat>SmeltingSpeed</workSpeedStat>
<effectWorking>Smelt</effectWorking>
<soundWorking>Recipe_Smelt</soundWorking>
<skillRequirements>
<li>
<skill>Crafting</skill>
<minLevel>2</minLevel>
</li>
</skillRequirements>
<ingredients>
<li>
<filter>
<thingDefs>
<li>Steel</li>
</thingDefs>
</filter>
<count>40</count>
</li>
<li>
<filter>
<thingDefs>
<li>WoodLog</li>
</thingDefs>
</filter>
<count>50</count>
</li>
</ingredients>
<products>
<Gun_Huot_PA>1</Gun_Huot_PA>
</products>
<fixedIngredientFilter>
<thingDefs>
<li>Steel</li>
<li>WoodLog</li>
</thingDefs>
</fixedIngredientFilter>
<workSkill>Crafting</workSkill>
</RecipeDef>
</RecipeDefs>