Fisher
Member
I have been adding items to my craft menus and all of them work but these two.
Here are the lines from my DefCarpentry:
Thanks!
Code:
Errors:
+ custom/DefCarpentry.cs:
CS0246: Line 151: The type or namespace name 'PlantBowl' could not be found
(are you missing a using directive or an assembly reference?)
CS0246: Line 805: The type or namespace name 'SmallBoatDeed' could not be fo
und (are you missing a using directive or an assembly reference?)
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
Here are the lines from my DefCarpentry:
Code:
this.AddCraft(typeof(PlantBowl), 1044294, "Plant Bowl", 20.0, 60.0, typeof(Board), 1044041, 1, 1044351);
#region Boats
index = this.AddCraft(typeof(SmallBoatDeed), "Boats", "SmallBoatDeed", 60.0, 85.0, typeof(OakBoard), 1044041, 200, 1044351);
this.AddSkill(index, SkillName.Tinkering, 55.0, 60.0);
this.AddRes(index, typeof(IronIngot), 1044036, 50, 1044037);
this.AddSkill(index, SkillName.Tailoring, 55.0, 60.0);
this.AddRes(index, typeof(Cloth), 1044286, 100, 1044287);
this.ForceNonExceptional(index);
#endregion
Thanks!