Project Zomboid

Project Zomboid

Auto Cook B41
 Dette emnet er festet, så det er nok viktig
Tchernobill  [utvikler] 29. okt. 2021 kl. 18.56
You have a better algorithm for food selection ?
Please detail your expected algorithm here.
< >
Viser 115 av 28 kommentarer
LyraLux 1. nov. 2021 kl. 13.12 
Not an algorithm, but a small fix request. A lot of meals were updated to be "better hot", but you've probably noticed that well over half those "better hot" foods instantly cool in your inventory. Is it possible to tweak how long something stays "hot"?

Bowl of beans for example. You can eat that right out of the campfire and it will lose it's "better hot" bonuses by the time your survivor starts eating. Realistically, most cooked foods stay warm for 15 to 30 minutes, and I know a bowl of hot cooked banes falls into the latter from experience!

Not to mention, full on meals can stay warm up to an hour.

Maybe a separate mod for this? I'd make it myself if I knew more about coding, but I'm still learning. Painfully slow.

If nothing else, applying it to your own mod here would be great. Ty for your time! Ty for the mod.
Sist redigert av LyraLux; 1. nov. 2021 kl. 13.13
Tchernobill  [utvikler] 1. nov. 2021 kl. 13.16 
From what I see in the code, the difference is -2 hapiness for bad-cold and + 2 happiness for good-hot. It remains hot for ~10 in game minutes instead of the ~30 you expected.
This 2 happiness difference is not significant enough for me to go further. The 10 Vs 30 minutes seems not very significant either. I guess they'll make higher stakes when they fully implement / rework temperature in the future.
Tell me if I'm wrong.

Meanwhile you can abuse a temperature bug with PZ41 : move the beans from the heat source to the ground (NOT to your inventory). You'll have infinite hot beans, but they'll rot.
Sist redigert av Tchernobill; 1. nov. 2021 kl. 14.06
dread_ 14. des. 2021 kl. 12.59 
Hello, not a better algorithm per se, more of a request:
Could you make it so that certain 'recipes' are saved? E.g. I lets say I prepare a salad with cabbage, potatoes and carrots (I'm not sure if these are actual ingredients, I rarely use salad). After finishing, I have to option to save this recipe (lets call it 'Nicesalad'), and next time I want to prepare something, I can chose 'Nicesalad' and the character prepares the exact same recipe (if ingredients are available).
Also, could you also implement the autocook for soup/stew?
Tchernobill  [utvikler] 15. des. 2021 kl. 10.01 
Soup and stew are simple recipes, not evolved recipes. They are already available in one click, aren't they ?

The idea of our own recipes is interesting but this is slightly different purpose for a VERY different implementation. I am not interested in implementing it for now. I wish you someone else does.
Sist redigert av Tchernobill; 20. des. 2021 kl. 15.36
Zeng Xiao 18. jan. 2022 kl. 22.57 
I have an algorithm, well 3 actually.
The mod could add 3 menu actions:
1, autocook flavorful xxx (max happiness): take random ingredients that has not been added until no more new ingredient or cannot add ingredient.
2, autocook filling xxx (max hunger): take the highest hunger option, but do not take something more than 3 times (as that reduces happiness)
3, autocook nutritious xxx (max calories): for characters with nutritionist perk, take the option with highest calories, but do not take something more than 3 times. for characters without nutritionist perk, take everything but vegetables and fruit first.
nickodemos 23. jan. 2022 kl. 13.46 
Possibly, when searching, take the oldest of an ingredient.
Zeng Xiao 23. jan. 2022 kl. 17.25 
Opprinnelig skrevet av nickodemos:
Possibly, when searching, take the oldest of an ingredient.
The algorithm shouldnt do that as this information is not revealed to the player, but the algorithm can take stale ingredient before fresh i guess
nickodemos 5. feb. 2022 kl. 22.45 
Yes. The idea was stale over fresh.
its chewsday init 3. apr. 2022 kl. 12.14 
Opprinnelig skrevet av Zeng Xiao:
I have an algorithm, well 3 actually.
The mod could add 3 menu actions:
1, autocook flavorful xxx (max happiness): take random ingredients that has not been added until no more new ingredient or cannot add ingredient.
2, autocook filling xxx (max hunger): take the highest hunger option, but do not take something more than 3 times (as that reduces happiness)
3, autocook nutritious xxx (max calories): for characters with nutritionist perk, take the option with highest calories, but do not take something more than 3 times. for characters without nutritionist perk, take everything but vegetables and fruit first.


I am interested in trying to make that if you want. I'll rewrite a mod of my own if I can learn PZ modding quickly so you can choose between these preferences and if you want to use salt (used for baking cakes and is resource limited while only giving +1 bonus in meals anyway)

I'd also like to make use stale ingredients in priority and if you're cook level 7, use rotten (togglable in the mod preferences)
Sist redigert av its chewsday init; 3. apr. 2022 kl. 12.15
gabes 12. aug. 2022 kl. 0.34 
could you possibly limit the amount of spices? I swear to god auto cook is adding every possible spice I have and making +70 happiness foods every time lmao
but it's a really nice mod
Sist redigert av gabes; 12. aug. 2022 kl. 0.35
Undefined (Utestengt) 25. aug. 2022 kl. 18.01 
I love your mods and have most of them!

One thing with AutoCook, that I'm digging through your code right now, is to figure out how to disable the usage of spices.

Considering spices do nothing but decrease unhappiness, and don't give out XP for their usage, I'd prefer not to use them.

I have no experience modding PZ, and my Lua coding is rusty as hell, so wish me luck.

I'm thinking all that needs to be done is a check for

item.Spice ~= true

in AutoCook:chooseItem

EDIT: Nah, didn't work. :(

I figure there's a function we can call to check the object's Spice value but, without access to the source code, I'm at a loss as to the name of the function.
Sist redigert av Undefined; 25. aug. 2022 kl. 23.21
Undefined (Utestengt) 26. aug. 2022 kl. 7.28 
Opprinnelig skrevet av gabes:
could you possibly limit the amount of spices? I swear to god auto cook is adding every possible spice I have and making +70 happiness foods every time lmao
but it's a really nice mod
I think I figured it out

1. Go to mods\AutoCook\media\lua\client
2. Open the AutoCook.lua file and go to line 84
3. Replace line 84's code with this:

if instanceof(item, "Food") and not item:isSpice() and not self.playerObj:isKnownPoison(item) and (recipe:isCookable() or not item:isbDangerousUncooked() or item:isCooked()) then--do we risk to apply also survivor / carpentry / .. recipes ?

The new line of code that is being added is

and not item:isSpice()

If you don't have a code editor that displays the line number, just do a search for

if instanceof(item, "Food")
Sist redigert av Undefined; 26. aug. 2022 kl. 7.31
Tchernobill  [utvikler] 26. aug. 2022 kl. 7.33 
Thanx and good work "Undefined".
I'll see to integrate this in vanilla when a find a way to select with / without spice.
Undefined (Utestengt) 26. aug. 2022 kl. 7.34 
Funny story: My character went from 80 weight to 93 from all the spices it was adding. XD

Normally, I just eat veggies and rabbit meat, but the spices added so much calories. At least I learned I can get his weight up by just adding spices. :D
Undefined (Utestengt) 26. aug. 2022 kl. 7.35 
Opprinnelig skrevet av Tchernobill:
Thanx and good work "Undefined".
I'll see to integrate this in vanilla when a find a way to select with / without spice.
No problem and thanks for all the great mods you make.
< >
Viser 115 av 28 kommentarer
Per side: 1530 50