Jump to content

ITEMCONTAINER.ADDITEM: CAN'T FIND


eurqa

Recommended Posts

I cant figer out why i get the errror "ERROR: ItemContainer.AddItem: can't find JerkyFish" when i cook my raw fish jerky.

i can find and spawn the item using the debug menu.

 

i do the same with my RawJerk to BeefJerky.

 

Does anyone know how to fix this?

 

[spoiler][code]Insertitem RawJerkyFish
    {
        HungerChange            =    -18,
        Weight                    =    0.4,
        Type                    =    Food,
        DisplayName                =    Raw Fish Jerky,
        Icon                    =    RawJerkyFish,
        Carbohydrates            =    1,
        Proteins            =    25,
        Lipids                =    10,
        Calories            =    190,
        IsCookable                =    TRUE,
        MinutesToCook            =    300,
        MinutesToBurn            =    420,
        DaysFresh                =    3,
        DangerousUncooked        =    TRUE,
        DaysTotallyRotten        =    6,
        ReplaceOnCooked            =    JerkyFish,
        FoodType                =     Fish,
        BadInMicrowave            =    true,
    }
    
    item JerkyFish
    {
        HungerChange            =    -25,
        Weight                    =    0.1,
        Type                    =    Food,
        DisplayName                =    Fish Jerky,
        Icon                    =    JerkyFish,
        Carbohydrates            =    1,
        Proteins                =    25,
        Lipids                    =    10,
        Calories                =    190,
        EvolvedRecipe            =    Stew:10;Pie:10;Stir fry Griddle Pan:10;Stir fry:10;Sandwich:2;Salad:2;Roasted Vegetables:10;RicePot:10;RicePan:10;PastaPot:10;PastaPan:10,
        FoodType                =     Fish,
    }.[/code][/spoiler]

 

 

 

 

 

 

 

 

eurqas additional crafts.rar

Edited by eurqa
add Spoiler
Link to comment
Share on other sites

Foud the error i had to add eurqa.JerkyFish, to ReplaceOnCooked.

[spoiler][code]Insert item RawJerkyFish
    {
        HungerChange            =    -18,
        Weight                    =    0.4,
        Type                    =    Food,
        DisplayName                =    Raw Fish Jerky,
        Icon                    =    RawJerkyFish,
        Carbohydrates            =    1,
        Proteins            =    25,
        Lipids                =    10,
        Calories            =    190,
        IsCookable                =    TRUE,
        MinutesToCook            =    300,
        MinutesToBurn            =    420,
        DaysFresh                =    3,
        DangerousUncooked        =    TRUE,
        DaysTotallyRotten        =    6,
        ReplaceOnCooked            =    eurqa.JerkyFish,
        FoodType                =     Fish,
        BadInMicrowave            =    true,
    }
[/code][/spoiler]

 

Edited by eurqa
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...