Jump to content
  • 0

Console errors: can't find recipe source


Eep²

Question

I see several "ERROR: can't find recipe source "SheetPaper" in recipe <recipe>" lines in console.txt yet the base game's media\scripts\items.txt has a SheetPaper item.

 

Some errors I can't even find the recipe it mentions:

ERROR: can't find recipe source "SaucePan" in recipe "Prepare Fries" (should be "Saucepan"--lowercase p)

ERROR: can't find recipe source "SheetPaper" in recipe "Make Shotgun Shells" (no SheetPaper ingredient in \media\scripts\recipes.txt for "Make Shotgun Shells" but is in Hydrocraft\media\scripts\Alchemy.txt)

 

And others...

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

This Error ocours because the Item is "obsolete" .

Take a look into the items.txt in the orignial game files you should find a file named SheetPaper2. Replace SheetPaper with SheetPaper2 all should be work.

 


    item SheetPaper
    {
        Weight    =    0.1,
        Type    =    Normal,
        DisplayName    =    Sheet of Paper,
        Icon    =    Paper,
        OBSOLETE = true,
    }

    item SheetPaper2
    {
        Weight    =    0.1,
        Type    =    Literature,
        DisplayName    =    Sheet of Paper,
        Icon    =    Paper,
        CanBeWrite  =   true,
        PageToWrite =   1,
    }

 

Link to comment
Share on other sites

Why would it be obsolete yet still be included in many recipes? Why not just fix SheetPaper to make it like SheetPaper2? So annoying Hydrocraft isn't keeping up with these "obsolete" items in their recipes...

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...