• If you have a mod, tool or prefab, please use the Resources section. Click Mods at the top of the forums.

Disable Gyro

so just remove the below from recipies.xml ?

Code:
<recipe name="vehicleGyroCopterAccessories" count="1" craft_time="270" craft_area="workbench" tags="perkGreaseMonkey,learnable,workbenchCrafting">
<ingredient name="resourceElectricParts" count="33"/>
<ingredient name="resourceHeadlight" count="8"/>
<ingredient name="resourceMetalPipe" count="50"/>
<ingredient name="resourceMechanicalParts" count="10"/>
<ingredient name="resourceSpring" count="4"/>
<effect_group>
	<passive_effect name="CraftingIngredientCount" operation="perc_add" level="0,4" value=".5,.5" tags="resourceMechanicalParts,resourceMetalPipe,resourceElectricParts,resourceSpring"/>
</effect_group>
</recipe>

<recipe name="vehicleGyroCopterChassis" count="1" craft_time="270" craft_area="workbench" tags="perkGreaseMonkey,learnable,workbenchCrafting">
<ingredient name="resourceForgedSteel" count="125"/>
<ingredient name="resourceMechanicalParts" count="40"/>
<ingredient name="resourceDuctTape" count="25"/>
<ingredient name="resourceLeather" count="40"/>
<ingredient name="resourceElectricParts" count="20"/>
<effect_group>
	<passive_effect name="CraftingIngredientCount" operation="perc_add" level="0,4" value=".5,.5" tags="resourceForgedSteel,resourceMechanicalParts,resourceDuctTape,resourceLeather,resourceElectricParts"/>
</effect_group>
</recipe>

<recipe name="vehicleGyrocopterPlaceable" count="1" craft_time="270" craft_area="workbench" tags="workbenchCrafting">
<ingredient name="vehicleWheels" count="3"/>
<ingredient name="vehicleGyroCopterChassis" count="1"/>
<ingredient name="vehicleGyroCopterAccessories" count="1"/>
<ingredient name="smallEngine" count="1"/>
<ingredient name="carBattery" count="1"/>
</recipe>
 
Back
Top