EatDrink.ash: Optimize your daily diet (and see how your old diet stacks up).

Theraze

Active member
Sure... I asked for vprint (debugging) levels for several months and never really got a response, which is why we have the "way too much info" level 8, and the "this is normal stuff" level 3. If you can tell me roughly what you expect to see at which levels... I'd expect that either 6 or 7 would be the last 'debugging something' level, and 5 or 6 would be the 'I'm a normal user who likes information' level. The current 8 could be moved up to 9 if needed. I don't expect the current 3 to change.

Note also that what you CAN do is set verbosity to 8 and then run one of those lines per above to JUST see that happening... if you run that availability line at 8, you should see it work through availability... it appears, from a quick check, like we just look in availability if we can make another, not check how many total we can create, since that doesn't REALLY matter. Based on this:
Code:
      while (have_ingredients(con.it, (createamt + 1), ings, 0) && createamt + con.have < 1)
        createamt += 1;
Basically, while we have the ingredients and the amount we're making plus the amount we already have is less than 1, add one to the make count. Want to check if you have enough ingredients for 3 chunky marys? You'd want to check them like so:
> ash import <eatdrink.ash> int[item] ings; have_ingredients($item[chunky mary], 3, ings, 0);

Returned: false

> ash import <eatdrink.ash> int[item] ings; have_ingredients($item[die sauer], 1, ings, 0);

Returned: true
Do I have enough for 3 marys? Nope. Enough for 1 sauerlager? Yep. Have ingredients works with the item desired, how many, ingredients already used, and if we're looping already (if we're calling have_ingredients from inside itself)... the loop check is what's needed to keep items like wads of dough from looping infinitely.
 

Magus_Prime

Well-known member
I'll try the steps you suggest tomorrow. I'm out of ingredients for today. Here are my thoughts on more information with greater levels of zlib verbosity. I think the current deluge when set at 8 should move to 9 or 10.

I gave some thought to this earlier today and this isn't even remotely fully thought out I'll give it a try. Somewhere in the middle of the verbosity scale would be something like this:

Show me what is being considered, with the values used to make the decision at each step of the process.
If multiple passes are being made, due to ingredient consumption or any other reason, note the change in calculation with the reason why
If I'm screwing myself by setting an EatDrink variable to a certain value let me know

In relation to the above point I did a fair amount of fiddling with the EatDrink variables and value_of_adventure during this past Crimbo and noticed that a small change could result in a large difference in meat spent and/or adventures gained.
 

Theraze

Active member
Regarding number 2, we already do that. From your quote above:
Since 12.0 is more than 11.5 we are using a speculative stack of 1168.
It always runs 4 or 5 speculative stacks going down by 11% per stack, until it drops below 50%... as in, there's a full value, 8/9ths, 7/9ths, 6/9ths, and 5/9th value check. In your case, it considered using a full... something... that would have given you 11.5 adventures. As 12 is more than 11.5, it dropped VoA down from 1500 to 1168 (roughly 7/9ths) and got you an extra half-adventure. At verbosity 6 or 7, we could list which items were on the rejected stack.

Regarding number 1, it considers... everything. Especially if you have mall access. Outside AoJ, you're looking at multiple walls of text even if you don't show the speculations happening. If verbosity 8 makes you sad currently, number 1 will make the tears eject like depressing cartoons.

Regarding number 3, it's really not my place to tell you what's right, since it wildly varies. About the only slight option-editorial I do is forcing STEP_MEAT to 0 in fistcore runs regardless of your eatdrink_stepMeat. Why? Because people complained about it spending meat, and nobody complained about it saving it. Besides that, it's either in the huge mass of comments somewhere here or in the post linked in OP where I went through, variable by variable, explaining what each did. :) What works for me may not work for you. If you want sanity-checking, use stepMeat. If you just want to spend the best for that limit, don't. If you want small foods, set a low individual item budget. If you want the best possibilities, don't. If you want it to use quest items, set a low value. If you want to protect them, leave the default MAX_MEAT or set it higher...

The tips/decisions go on and on. Just like trying to decide on company security level, it's all a balancing act that varies based on the desired outcome. Just like you discovered... changing from 1000 to 1250 for VoA may be the difference between fruity drinks and supercocks. Does that mean it's a change that people should make? Depends on how much profit you make per adventure. Doesn't help you to spend the extra 4k for the adventures if you only make 2k additional profit.

Edit: Also, since you didn't have it happen... if something goes wrong getting an item, it posts it with level 3 (normal default user) and recalculates:
Code:
            vprint("Something went wrong with getting "+position[nowposition].it+" for "+position[nowposition].price+". Recalculating.",3);
 

Magus_Prime

Well-known member
I did some more testing this morning with zlib verbosity = 8 and noticed a few oddities:

1. Even if I ran EatDrink for food only it didn't return the same detailed results that it does for drink. The comparative values shown in the first section below are never displayed for the food choices.

Code:
passable stout full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
acceptable vodka full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
adequate rum full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
mediocre lager full 2 advscore 670.0 statscore 82.5 costscore 5.0 val 747.0 od false
Die Sauerlager full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
Bologna Lambic full 3 advscore 2010.0 statscore 133.33333333333334 costscore 3.3333333333333335 val 2140.0 od false
Vodka Dog full 3 advscore 2010.0 statscore 23.333333333333332 costscore 3.3333333333333335 val 2030.0 od false
Disappointed Russian full 4 advscore 1340.0 statscore 17.5 costscore 2.5 val 1355.0 od false
Chunky Mary full 4 advscore 2010.0 statscore 17.5 costscore 2.5 val 2025.0 od false
Nachojito full 3 advscore 2010.0 statscore 23.333333333333332 costscore 3.3333333333333335 val 2030.0 od false
Le Roi full 3 advscore 2010.0 statscore 23.333333333333332 costscore 3.3333333333333335 val 2030.0 od false
Over Easy Rider full 3 advscore 2010.0 statscore 23.333333333333332 costscore 3.3333333333333335 val 2030.0 od false
Obtaining Bologna Lambic to consume.
simulating retrieval of one Bologna Lambic.
Obtaining Bologna Lambic to consume.
simulating retrieval of one Bologna Lambic.
Obtaining Bologna Lambic to consume.
simulating retrieval of one Bologna Lambic.
Obtaining Bologna Lambic to consume.
simulating retrieval of one Bologna Lambic.
Obtaining mediocre lager to consume.
simulating retrieval of one mediocre lager.
1: Bologna Lambic lev:0 gain:3.0 adv:9.0 musc:0.0 myst:35.0 mox:25.0 meat:10 own:1 value:4630
Bologna Lambic full 3 advscore 4500.0 statscore 133.33333333333334 costscore 3.3333333333333335 val 4630.0 od false
2: Bologna Lambic lev:0 gain:3.0 adv:9.0 musc:0.0 myst:35.0 mox:25.0 meat:10 own:1 value:4630
Bologna Lambic full 3 advscore 4500.0 statscore 133.33333333333334 costscore 3.3333333333333335 val 4630.0 od false
3: Bologna Lambic lev:0 gain:3.0 adv:9.0 musc:0.0 myst:35.0 mox:25.0 meat:10 own:1 value:4630
Bologna Lambic full 3 advscore 4500.0 statscore 133.33333333333334 costscore 3.3333333333333335 val 4630.0 od false
4: Bologna Lambic lev:0 gain:3.0 adv:9.0 musc:0.0 myst:35.0 mox:25.0 meat:10 own:1 value:4630
Bologna Lambic full 3 advscore 4500.0 statscore 133.33333333333334 costscore 3.3333333333333335 val 4630.0 od false
5: mediocre lager lev:0 gain:2.0 adv:2.0 musc:0.0 myst:15.0 mox:7.5 meat:10 own:16 value:1577
mediocre lager full 2 advscore 1500.0 statscore 82.5 costscore 5.0 val 1577.0 od false
Pass 3: spleen.
Skipping spleen.
Pass 4: drink.
Skipping drink.
Finished.
Spent 0 meat with additional expenditures of 0 meat. Gained Fullness: 7. Inebriety: 14. Spleen: 0.
Adventures: 73. Muscle: 25. Moxie: 132. Mysticality: 210.
Eating, drinking, and spleening complete. Commence merrymaking (at your own discretion).
******************************************
Now, to recap...
******************************************
Starting EatDrink.ash (version 3.1.9).
Consuming up to 15 food, 14 booze, and 0 spleen
Considering food from inventory Coinmasters NPCs. Per-item budget cap is 75000.0.
Retrieval cap is 30000. Price will be a factor if you own it already.
An adventure has the value of 1500 meat. Mysticality subpoint is 10.0. Nonprime stat subpoint is 2.0.
Simulating only; no purchases or food/drink/spleen consumption.
food: At 0, consuming to 15 with 15115 meat.
1: Omega Sundae lev:0 gain:7.0 adv:35.0 musc:25.0 myst:55.0 mox:25.0 meat:10 own:1 value:12039.57142857143
food: At 7, consuming to 15 with 15115 meat.
drink: At 0, consuming to 14 with 15115 meat.
1: Bologna Lambic lev:0 gain:3.0 adv:9.0 musc:0.0 myst:35.0 mox:25.0 meat:10 own:1 value:4630
2: Bologna Lambic lev:0 gain:3.0 adv:9.0 musc:0.0 myst:35.0 mox:25.0 meat:10 own:1 value:4630
3: Bologna Lambic lev:0 gain:3.0 adv:9.0 musc:0.0 myst:35.0 mox:25.0 meat:10 own:1 value:4630
4: Bologna Lambic lev:0 gain:3.0 adv:9.0 musc:0.0 myst:35.0 mox:25.0 meat:10 own:1 value:4630
5: mediocre lager lev:0 gain:2.0 adv:2.0 musc:0.0 myst:15.0 mox:7.5 meat:10 own:16 value:1577
Finished.
Spent 0 meat with additional expenditures of 0 meat. Gained Fullness: 7. Inebriety: 14. Spleen: 0.
Adventures: 73. Muscle: 25. Moxie: 132. Mysticality: 210.
Eating, drinking, and spleening complete. Commence merrymaking (at your own discretion).

When I asked EatDrink whether it could make two Omega Sundaes it returned the following:

Code:
 ash import <eatdrink.ash> int[item] ings; have_ingredients($item[omega sundae], 2, ings, 0);
Code:
Running ZLib version: r37 (current)
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate brownie = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic dough = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate ice cream = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate strawberries = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
QUEST ITEM:cosmic fruit = 10
QUEST ITEM:consummate whipped cream = 10
QUEST ITEM:cosmic cream = 10
Returned: true

Note all the values associated with the items. Are those item counts? If so they are incorrect. At present I have:

11 cosmic eggs
12 cosmic doughs
6 cosmic vegetables
10 cosmic cheeses
8 cosmic potted meat products
4 cosmic potatoes
10 cosmic creams
14 cosmic fruits
16 mediocre lagers

It's still puzzling why EatDrink won't consume more than a single Omega Sundae in this situation. Any ideas?
 

Theraze

Active member
Value, not amount. Your quest item value is 10, so those quest items (all AoJ food ingredients) are worth 10 meat each. Additionally, what you pasted above is from significantly past the section checked below. My guess is that the eating section does do that, you just don't have it on your screen because it's so far past.

The attached EatDrink splits vprint out a bit. 6 tells you the steps as they're happening (what's filtering when), 7 tells you when an item gets eliminated or a favourite picked, 8 tells you everything about prices which includes spamming your brains out, and 9 shows you everything that 8 used to which includes looking at each of the dusty wines, each item being imported into the list, every time a speculation doesn't beat the current, etc.

For your case, I'd probably go with 7 or 8. Probably. And just tell it to simulate eating, so you don't need to try to fight mafia's back-buffer for drinks as well.
 

Attachments

  • EatDrink.ash
    104.6 KB · Views: 23

Magus_Prime

Well-known member
Thanks. I'll try the updated EatDrink tomorrow. I did run just an eating simulation with verbosity = 8 and I didn't get the same sort of results that I got when I ran for both eating and drinking or for drinking alone. The section like this:

Code:
passable stout full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
acceptable vodka full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
adequate rum full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
mediocre lager full 2 advscore 670.0 statscore 82.5 costscore 5.0 val 747.0 od false

I was watching the gCLI the whole time it didn't appear at all during the eating simulation or during the eating and drinking simulation.
 

Theraze

Active member
Well, this:
Code:
  vprint(con.it+" full "+full+" advscore "+advscore+" statscore "+statscore+" costscore "+costscore+" val "+val+" od "+overdrink,8);
is part of the 'value' section. Anytime value is calculated, it runs that... there's no return val before that, so either that was run, or you didn't have a value...
 

Magus_Prime

Well-known member
I was wrong in part of what I wrote yesterday. The calculation of what the different foods under consideration were worth was present. The information was just flying by so fast that I didn't see it. It was one or two lines of information buried amongst the QUEST ITEM: lines.

I changed printing of the nominal value of QUEST ITEM from verbosity 8 to 9, set verbosity to 8 and got this:

Code:
> call scripts\EatDrink.ash

Running ZLib version: r37 (current)
Running EatDrink version: 3.1.9 (current)
Refreshing stash contents...
Stash list retrieved.
Internal checkpoint created.
Skipping favorites.
You're in ronin, so no shopping for you.
Starting EatDrink.ash (version 3.1.9).
Consuming up to 15 food, 0 booze, and 0 spleen
Considering food from inventory Coinmasters NPCs. Per-item budget cap is 75000.0.
Retrieval cap is 30000. Price will be a factor if you own it already.
An adventure has the value of 1500 meat. Mysticality subpoint is 10.0. Nonprime stat subpoint is 2.0.
Simulating only; no purchases or food/drink/spleen consumption.
Pass 1: food.
food: At 0, consuming to 15 with 21583 meat.
Loading food map from Mafia's data
Copying food map using Mafia's data
Filtering by type
Finding prices
Setting values
consummate hard-boiled egg full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate fried egg full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate egg salad full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate bagel full 4 advscore 27000.0 statscore 210.0 costscore 2.5 val 27207.0 od false
consummate sliced bread full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate hot dog bun full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate brownie full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate toast full 2 advscore 13500.0 statscore 420.0 costscore 5.0 val 13915.0 od false
consummate soup full 4 advscore 27000.0 statscore 210.0 costscore 2.5 val 27207.0 od false
consummate corn chips full 2 advscore 13500.0 statscore 420.0 costscore 5.0 val 13915.0 od false
consummate salad full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate salsa full 2 advscore 13500.0 statscore 420.0 costscore 5.0 val 13915.0 od false
consummate sauerkraut full 1 advscore 6000.0 statscore 840.0 costscore 10.0 val 6830.0 od false
consummate cheese slice full 2 advscore 13500.0 statscore 420.0 costscore 5.0 val 13915.0 od false
consummate melted cheese full 4 advscore 27000.0 statscore 210.0 costscore 2.5 val 27207.0 od false
consummate bacon full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate meatloaf full 5 advscore 33750.0 statscore 168.0 costscore 2.0 val 33916.0 od false
consummate steak full 4 advscore 27000.0 statscore 210.0 costscore 2.5 val 27207.0 od false
consummate cold cuts full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate frankfurter full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate french fries full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate baked potato full 4 advscore 27000.0 statscore 210.0 costscore 2.5 val 27207.0 od false
consummate ice cream full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate whipped cream full 2 advscore 13500.0 statscore 420.0 costscore 5.0 val 13915.0 od false
consummate sour cream full 1 advscore 6000.0 statscore 840.0 costscore 10.0 val 6830.0 od false
consummate strawberries full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate sorbet full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
immaculate grilled cheese full 4 advscore 30000.0 statscore 285.0 costscore 2.5 val 30282.0 od false
immaculate ice cream sandwich full 4 advscore 30000.0 statscore 285.0 costscore 2.5 val 30282.0 od false
immaculate hot dog full 4 advscore 30000.0 statscore 285.0 costscore 2.5 val 30282.0 od false
immaculate egg salad sandwich full 4 advscore 30000.0 statscore 285.0 costscore 2.5 val 30282.0 od false
perfect sandwich full 5 advscore 45000.0 statscore 306.0 costscore 2.0 val 45304.0 od false
perfect chef salad full 5 advscore 45000.0 statscore 306.0 costscore 2.0 val 45304.0 od false
perfect breakfast full 5 advscore 45000.0 statscore 300.0 costscore 2.0 val 45298.0 od false
sublime deluxe hot dog full 6 advscore 63000.0 statscore 255.0 costscore 1.6666666666666667 val 63253.0 od false
sublime stew full 6 advscore 63000.0 statscore 250.0 costscore 1.6666666666666667 val 63248.0 od false
sublime nachos full 6 advscore 63000.0 statscore 255.0 costscore 1.6666666666666667 val 63253.0 od false
Ultimate Breakfast Sandwich full 7 advscore 84000.0 statscore 265.7142857142857 costscore 1.4285714285714286 val 84264.0 od false
Loaded Baked Potato full 7 advscore 84000.0 statscore 265.7142857142857 costscore 1.4285714285714286 val 84264.0 od false
Omega Sundae full 7 advscore 84000.0 statscore 278.57142857142856 costscore 1.4285714285714286 val 84277.0 od false
If there are favorites still in consideration, they'll be here:
Finding prices
Choosing food to consume.
If there are favorites still in consideration, they'll be here:
consummate hard-boiled egg full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate fried egg full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate egg salad full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate bagel full 4 advscore 2001.0 statscore 70.0 costscore 2.5 val 2068.0 od false
consummate sliced bread full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate hot dog bun full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate brownie full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate toast full 2 advscore 2001.0 statscore 140.0 costscore 5.0 val 2136.0 od false
consummate soup full 4 advscore 2001.0 statscore 70.0 costscore 2.5 val 2068.0 od false
consummate corn chips full 2 advscore 2001.0 statscore 140.0 costscore 5.0 val 2136.0 od false
consummate salad full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate salsa full 2 advscore 2001.0 statscore 140.0 costscore 5.0 val 2136.0 od false
consummate sauerkraut full 1 advscore 1334.0 statscore 280.0 costscore 10.0 val 1604.0 od false
consummate cheese slice full 2 advscore 2001.0 statscore 140.0 costscore 5.0 val 2136.0 od false
consummate melted cheese full 4 advscore 2001.0 statscore 70.0 costscore 2.5 val 2068.0 od false
consummate bacon full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate meatloaf full 5 advscore 2001.0 statscore 56.0 costscore 2.0 val 2055.0 od false
consummate steak full 4 advscore 2001.0 statscore 70.0 costscore 2.5 val 2068.0 od false
consummate cold cuts full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate frankfurter full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate french fries full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate baked potato full 4 advscore 2001.0 statscore 70.0 costscore 2.5 val 2068.0 od false
consummate ice cream full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate whipped cream full 2 advscore 2001.0 statscore 140.0 costscore 5.0 val 2136.0 od false
consummate sour cream full 1 advscore 1334.0 statscore 280.0 costscore 10.0 val 1604.0 od false
consummate strawberries full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate sorbet full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
immaculate grilled cheese full 4 advscore 2668.0 statscore 95.0 costscore 2.5 val 2760.0 od false
immaculate ice cream sandwich full 4 advscore 2668.0 statscore 95.0 costscore 2.5 val 2760.0 od false
immaculate hot dog full 4 advscore 2668.0 statscore 95.0 costscore 2.5 val 2760.0 od false
immaculate egg salad sandwich full 4 advscore 2668.0 statscore 95.0 costscore 2.5 val 2760.0 od false
perfect sandwich full 5 advscore 4002.0 statscore 102.0 costscore 2.0 val 4102.0 od false
perfect chef salad full 5 advscore 4002.0 statscore 102.0 costscore 2.0 val 4102.0 od false
perfect breakfast full 5 advscore 4002.0 statscore 100.0 costscore 2.0 val 4100.0 od false
sublime deluxe hot dog full 6 advscore 5336.0 statscore 85.0 costscore 1.6666666666666667 val 5419.0 od false
sublime stew full 6 advscore 5336.0 statscore 83.33333333333333 costscore 1.6666666666666667 val 5417.0 od false
sublime nachos full 6 advscore 5336.0 statscore 85.0 costscore 1.6666666666666667 val 5419.0 od false
Ultimate Breakfast Sandwich full 7 advscore 6670.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 6757.0 od false
Loaded Baked Potato full 7 advscore 6670.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 6757.0 od false
Omega Sundae full 7 advscore 6670.0 statscore 92.85714285714285 costscore 1.4285714285714286 val 6761.0 od false
If there are favorites still in consideration, they'll be here:
consummate hard-boiled egg full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate fried egg full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate egg salad full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate bagel full 4 advscore 1752.0 statscore 70.0 costscore 2.5 val 1819.0 od false
consummate sliced bread full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate hot dog bun full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate brownie full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate toast full 2 advscore 1752.0 statscore 140.0 costscore 5.0 val 1887.0 od false
consummate soup full 4 advscore 1752.0 statscore 70.0 costscore 2.5 val 1819.0 od false
consummate corn chips full 2 advscore 1752.0 statscore 140.0 costscore 5.0 val 1887.0 od false
consummate salad full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate salsa full 2 advscore 1752.0 statscore 140.0 costscore 5.0 val 1887.0 od false
consummate sauerkraut full 1 advscore 1168.0 statscore 280.0 costscore 10.0 val 1438.0 od false
consummate cheese slice full 2 advscore 1752.0 statscore 140.0 costscore 5.0 val 1887.0 od false
consummate melted cheese full 4 advscore 1752.0 statscore 70.0 costscore 2.5 val 1819.0 od false
consummate bacon full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate meatloaf full 5 advscore 1752.0 statscore 56.0 costscore 2.0 val 1806.0 od false
consummate steak full 4 advscore 1752.0 statscore 70.0 costscore 2.5 val 1819.0 od false
consummate cold cuts full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate frankfurter full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate french fries full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate baked potato full 4 advscore 1752.0 statscore 70.0 costscore 2.5 val 1819.0 od false
consummate ice cream full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate whipped cream full 2 advscore 1752.0 statscore 140.0 costscore 5.0 val 1887.0 od false
consummate sour cream full 1 advscore 1168.0 statscore 280.0 costscore 10.0 val 1438.0 od false
consummate strawberries full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate sorbet full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
immaculate grilled cheese full 4 advscore 2336.0 statscore 95.0 costscore 2.5 val 2428.0 od false
immaculate ice cream sandwich full 4 advscore 2336.0 statscore 95.0 costscore 2.5 val 2428.0 od false
immaculate hot dog full 4 advscore 2336.0 statscore 95.0 costscore 2.5 val 2428.0 od false
immaculate egg salad sandwich full 4 advscore 2336.0 statscore 95.0 costscore 2.5 val 2428.0 od false
perfect sandwich full 5 advscore 3504.0 statscore 102.0 costscore 2.0 val 3604.0 od false
perfect chef salad full 5 advscore 3504.0 statscore 102.0 costscore 2.0 val 3604.0 od false
perfect breakfast full 5 advscore 3504.0 statscore 100.0 costscore 2.0 val 3602.0 od false
sublime deluxe hot dog full 6 advscore 4672.0 statscore 85.0 costscore 1.6666666666666667 val 4755.0 od false
sublime stew full 6 advscore 4672.0 statscore 83.33333333333333 costscore 1.6666666666666667 val 4753.0 od false
sublime nachos full 6 advscore 4672.0 statscore 85.0 costscore 1.6666666666666667 val 4755.0 od false
Ultimate Breakfast Sandwich full 7 advscore 5840.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 5927.0 od false
Loaded Baked Potato full 7 advscore 5840.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 5927.0 od false
Omega Sundae full 7 advscore 5840.0 statscore 92.85714285714285 costscore 1.4285714285714286 val 5931.0 od false
If there are favorites still in consideration, they'll be here:
consummate hard-boiled egg full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate fried egg full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate egg salad full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate bagel full 4 advscore 1503.0 statscore 70.0 costscore 2.5 val 1570.0 od false
consummate sliced bread full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate hot dog bun full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate brownie full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate toast full 2 advscore 1503.0 statscore 140.0 costscore 5.0 val 1638.0 od false
consummate soup full 4 advscore 1503.0 statscore 70.0 costscore 2.5 val 1570.0 od false
consummate corn chips full 2 advscore 1503.0 statscore 140.0 costscore 5.0 val 1638.0 od false
consummate salad full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate salsa full 2 advscore 1503.0 statscore 140.0 costscore 5.0 val 1638.0 od false
consummate sauerkraut full 1 advscore 1002.0 statscore 280.0 costscore 10.0 val 1272.0 od false
consummate cheese slice full 2 advscore 1503.0 statscore 140.0 costscore 5.0 val 1638.0 od false
consummate melted cheese full 4 advscore 1503.0 statscore 70.0 costscore 2.5 val 1570.0 od false
consummate bacon full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate meatloaf full 5 advscore 1503.0 statscore 56.0 costscore 2.0 val 1557.0 od false
consummate steak full 4 advscore 1503.0 statscore 70.0 costscore 2.5 val 1570.0 od false
consummate cold cuts full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate frankfurter full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate french fries full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate baked potato full 4 advscore 1503.0 statscore 70.0 costscore 2.5 val 1570.0 od false
consummate ice cream full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate whipped cream full 2 advscore 1503.0 statscore 140.0 costscore 5.0 val 1638.0 od false
consummate sour cream full 1 advscore 1002.0 statscore 280.0 costscore 10.0 val 1272.0 od false
consummate strawberries full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate sorbet full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
immaculate grilled cheese full 4 advscore 2004.0 statscore 95.0 costscore 2.5 val 2096.0 od false
immaculate ice cream sandwich full 4 advscore 2004.0 statscore 95.0 costscore 2.5 val 2096.0 od false
immaculate hot dog full 4 advscore 2004.0 statscore 95.0 costscore 2.5 val 2096.0 od false
immaculate egg salad sandwich full 4 advscore 2004.0 statscore 95.0 costscore 2.5 val 2096.0 od false
perfect sandwich full 5 advscore 3006.0 statscore 102.0 costscore 2.0 val 3106.0 od false
perfect chef salad full 5 advscore 3006.0 statscore 102.0 costscore 2.0 val 3106.0 od false
perfect breakfast full 5 advscore 3006.0 statscore 100.0 costscore 2.0 val 3104.0 od false
sublime deluxe hot dog full 6 advscore 4008.0 statscore 85.0 costscore 1.6666666666666667 val 4091.0 od false
sublime stew full 6 advscore 4008.0 statscore 83.33333333333333 costscore 1.6666666666666667 val 4089.0 od false
sublime nachos full 6 advscore 4008.0 statscore 85.0 costscore 1.6666666666666667 val 4091.0 od false
Ultimate Breakfast Sandwich full 7 advscore 5010.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 5097.0 od false
Loaded Baked Potato full 7 advscore 5010.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 5097.0 od false
Omega Sundae full 7 advscore 5010.0 statscore 92.85714285714285 costscore 1.4285714285714286 val 5101.0 od false
If there are favorites still in consideration, they'll be here:
consummate hard-boiled egg full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate fried egg full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate egg salad full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate bagel full 4 advscore 1254.0 statscore 70.0 costscore 2.5 val 1321.0 od false
consummate sliced bread full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate hot dog bun full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate brownie full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate toast full 2 advscore 1254.0 statscore 140.0 costscore 5.0 val 1389.0 od false
consummate soup full 4 advscore 1254.0 statscore 70.0 costscore 2.5 val 1321.0 od false
consummate corn chips full 2 advscore 1254.0 statscore 140.0 costscore 5.0 val 1389.0 od false
consummate salad full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate salsa full 2 advscore 1254.0 statscore 140.0 costscore 5.0 val 1389.0 od false
consummate sauerkraut full 1 advscore 836.0 statscore 280.0 costscore 10.0 val 1106.0 od false
consummate cheese slice full 2 advscore 1254.0 statscore 140.0 costscore 5.0 val 1389.0 od false
consummate melted cheese full 4 advscore 1254.0 statscore 70.0 costscore 2.5 val 1321.0 od false
consummate bacon full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate meatloaf full 5 advscore 1254.0 statscore 56.0 costscore 2.0 val 1308.0 od false
consummate steak full 4 advscore 1254.0 statscore 70.0 costscore 2.5 val 1321.0 od false
consummate cold cuts full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate frankfurter full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate french fries full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate baked potato full 4 advscore 1254.0 statscore 70.0 costscore 2.5 val 1321.0 od false
consummate ice cream full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate whipped cream full 2 advscore 1254.0 statscore 140.0 costscore 5.0 val 1389.0 od false
consummate sour cream full 1 advscore 836.0 statscore 280.0 costscore 10.0 val 1106.0 od false
consummate strawberries full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate sorbet full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
immaculate grilled cheese full 4 advscore 1672.0 statscore 95.0 costscore 2.5 val 1764.0 od false
immaculate ice cream sandwich full 4 advscore 1672.0 statscore 95.0 costscore 2.5 val 1764.0 od false
immaculate hot dog full 4 advscore 1672.0 statscore 95.0 costscore 2.5 val 1764.0 od false
immaculate egg salad sandwich full 4 advscore 1672.0 statscore 95.0 costscore 2.5 val 1764.0 od false
perfect sandwich full 5 advscore 2508.0 statscore 102.0 costscore 2.0 val 2608.0 od false
perfect chef salad full 5 advscore 2508.0 statscore 102.0 costscore 2.0 val 2608.0 od false
perfect breakfast full 5 advscore 2508.0 statscore 100.0 costscore 2.0 val 2606.0 od false
sublime deluxe hot dog full 6 advscore 3344.0 statscore 85.0 costscore 1.6666666666666667 val 3427.0 od false
sublime stew full 6 advscore 3344.0 statscore 83.33333333333333 costscore 1.6666666666666667 val 3425.0 od false
sublime nachos full 6 advscore 3344.0 statscore 85.0 costscore 1.6666666666666667 val 3427.0 od false
Ultimate Breakfast Sandwich full 7 advscore 4180.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 4267.0 od false
Loaded Baked Potato full 7 advscore 4180.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 4267.0 od false
Omega Sundae full 7 advscore 4180.0 statscore 92.85714285714285 costscore 1.4285714285714286 val 4271.0 od false
If there are favorites still in consideration, they'll be here:
consummate hard-boiled egg full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate fried egg full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate egg salad full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate bagel full 4 advscore 1005.0 statscore 70.0 costscore 2.5 val 1072.0 od false
consummate sliced bread full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate hot dog bun full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate brownie full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate toast full 2 advscore 1005.0 statscore 140.0 costscore 5.0 val 1140.0 od false
consummate soup full 4 advscore 1005.0 statscore 70.0 costscore 2.5 val 1072.0 od false
consummate corn chips full 2 advscore 1005.0 statscore 140.0 costscore 5.0 val 1140.0 od false
consummate salad full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate salsa full 2 advscore 1005.0 statscore 140.0 costscore 5.0 val 1140.0 od false
consummate sauerkraut full 1 advscore 670.0 statscore 280.0 costscore 10.0 val 940.0 od false
consummate cheese slice full 2 advscore 1005.0 statscore 140.0 costscore 5.0 val 1140.0 od false
consummate melted cheese full 4 advscore 1005.0 statscore 70.0 costscore 2.5 val 1072.0 od false
consummate bacon full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate meatloaf full 5 advscore 1005.0 statscore 56.0 costscore 2.0 val 1059.0 od false
consummate steak full 4 advscore 1005.0 statscore 70.0 costscore 2.5 val 1072.0 od false
consummate cold cuts full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate frankfurter full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate french fries full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate baked potato full 4 advscore 1005.0 statscore 70.0 costscore 2.5 val 1072.0 od false
consummate ice cream full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate whipped cream full 2 advscore 1005.0 statscore 140.0 costscore 5.0 val 1140.0 od false
consummate sour cream full 1 advscore 670.0 statscore 280.0 costscore 10.0 val 940.0 od false
consummate strawberries full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate sorbet full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
immaculate grilled cheese full 4 advscore 1340.0 statscore 95.0 costscore 2.5 val 1432.0 od false
immaculate ice cream sandwich full 4 advscore 1340.0 statscore 95.0 costscore 2.5 val 1432.0 od false
immaculate hot dog full 4 advscore 1340.0 statscore 95.0 costscore 2.5 val 1432.0 od false
immaculate egg salad sandwich full 4 advscore 1340.0 statscore 95.0 costscore 2.5 val 1432.0 od false
perfect sandwich full 5 advscore 2010.0 statscore 102.0 costscore 2.0 val 2110.0 od false
perfect chef salad full 5 advscore 2010.0 statscore 102.0 costscore 2.0 val 2110.0 od false
perfect breakfast full 5 advscore 2010.0 statscore 100.0 costscore 2.0 val 2108.0 od false
sublime deluxe hot dog full 6 advscore 2680.0 statscore 85.0 costscore 1.6666666666666667 val 2763.0 od false
sublime stew full 6 advscore 2680.0 statscore 83.33333333333333 costscore 1.6666666666666667 val 2761.0 od false
sublime nachos full 6 advscore 2680.0 statscore 85.0 costscore 1.6666666666666667 val 2763.0 od false
Ultimate Breakfast Sandwich full 7 advscore 3350.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 3437.0 od false
Loaded Baked Potato full 7 advscore 3350.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 3437.0 od false
Omega Sundae full 7 advscore 3350.0 statscore 92.85714285714285 costscore 1.4285714285714286 val 3441.0 od false
If there are favorites still in consideration, they'll be here:
consummate hard-boiled egg full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate fried egg full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate egg salad full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate bagel full 4 advscore 1005.0 statscore 70.0 costscore 2.5 val 1072.0 od false
consummate sliced bread full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate hot dog bun full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate brownie full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate toast full 2 advscore 1005.0 statscore 140.0 costscore 5.0 val 1140.0 od false
consummate soup full 4 advscore 1005.0 statscore 70.0 costscore 2.5 val 1072.0 od false
consummate corn chips full 2 advscore 1005.0 statscore 140.0 costscore 5.0 val 1140.0 od false
consummate salad full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate salsa full 2 advscore 1005.0 statscore 140.0 costscore 5.0 val 1140.0 od false
consummate sauerkraut full 1 advscore 670.0 statscore 280.0 costscore 10.0 val 940.0 od false
consummate cheese slice full 2 advscore 1005.0 statscore 140.0 costscore 5.0 val 1140.0 od false
consummate melted cheese full 4 advscore 1005.0 statscore 70.0 costscore 2.5 val 1072.0 od false
consummate bacon full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate meatloaf full 5 advscore 1005.0 statscore 56.0 costscore 2.0 val 1059.0 od false
consummate steak full 4 advscore 1005.0 statscore 70.0 costscore 2.5 val 1072.0 od false
consummate cold cuts full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate frankfurter full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate french fries full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate baked potato full 4 advscore 1005.0 statscore 70.0 costscore 2.5 val 1072.0 od false
consummate ice cream full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate whipped cream full 2 advscore 1005.0 statscore 140.0 costscore 5.0 val 1140.0 od false
consummate sour cream full 1 advscore 670.0 statscore 280.0 costscore 10.0 val 940.0 od false
consummate strawberries full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate sorbet full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
immaculate grilled cheese full 4 advscore 1340.0 statscore 95.0 costscore 2.5 val 1432.0 od false
immaculate ice cream sandwich full 4 advscore 1340.0 statscore 95.0 costscore 2.5 val 1432.0 od false
immaculate hot dog full 4 advscore 1340.0 statscore 95.0 costscore 2.5 val 1432.0 od false
immaculate egg salad sandwich full 4 advscore 1340.0 statscore 95.0 costscore 2.5 val 1432.0 od false
perfect sandwich full 5 advscore 2010.0 statscore 102.0 costscore 2.0 val 2110.0 od false
perfect chef salad full 5 advscore 2010.0 statscore 102.0 costscore 2.0 val 2110.0 od false
perfect breakfast full 5 advscore 2010.0 statscore 100.0 costscore 2.0 val 2108.0 od false
sublime deluxe hot dog full 6 advscore 2680.0 statscore 85.0 costscore 1.6666666666666667 val 2763.0 od false
sublime stew full 6 advscore 2680.0 statscore 83.33333333333333 costscore 1.6666666666666667 val 2761.0 od false
sublime nachos full 6 advscore 2680.0 statscore 85.0 costscore 1.6666666666666667 val 2763.0 od false
Ultimate Breakfast Sandwich full 7 advscore 3350.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 3437.0 od false
Loaded Baked Potato full 7 advscore 3350.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 3437.0 od false
Omega Sundae full 7 advscore 3350.0 statscore 92.85714285714285 costscore 1.4285714285714286 val 3441.0 od false
Obtaining Omega Sundae to consume.
simulating retrieval of one Omega Sundae.
1: Omega Sundae lev:0 gain:7.0 adv:35.0 musc:25.0 myst:55.0 mox:25.0 meat:10 own:1 value:12039.57142857143
Omega Sundae full 7 advscore 7500.0 statscore 92.85714285714285 costscore 1.4285714285714286 val 7591.0 od false
Pass 1: food.
food: At 7, consuming to 15 with 21583 meat.
Loading food map from Mafia's data
Copying food map using Mafia's data
Filtering by type
Finding prices
Setting values
Finding prices
Choosing food to consume.
No food available that's good enough. Found 0 items first. Moving on.
Pass 2: drink.
Skipping drink.
Pass 3: spleen.
Skipping spleen.
Pass 4: drink.
Skipping drink.
Finished.
Spent 0 meat with additional expenditures of 0 meat. Gained Fullness: 7. Inebriety: 0. Spleen: 0.
Adventures: 35. Muscle: 25. Moxie: 25. Mysticality: 55.
Eating, drinking, and spleening complete. Commence merrymaking (at your own discretion).
******************************************
Now, to recap...
******************************************
Starting EatDrink.ash (version 3.1.9).
Consuming up to 15 food, 0 booze, and 0 spleen
Considering food from inventory Coinmasters NPCs. Per-item budget cap is 75000.0.
Retrieval cap is 30000. Price will be a factor if you own it already.
An adventure has the value of 1500 meat. Mysticality subpoint is 10.0. Nonprime stat subpoint is 2.0.
Simulating only; no purchases or food/drink/spleen consumption.
food: At 0, consuming to 15 with 21583 meat.
1: Omega Sundae lev:0 gain:7.0 adv:35.0 musc:25.0 myst:55.0 mox:25.0 meat:10 own:1 value:12039.57142857143
food: At 7, consuming to 15 with 21583 meat.
Finished.
Spent 0 meat with additional expenditures of 0 meat. Gained Fullness: 7. Inebriety: 0. Spleen: 0.
Adventures: 35. Muscle: 25. Moxie: 25. Mysticality: 55.
Eating, drinking, and spleening complete. Commence merrymaking (at your own discretion).

EatDrink does seem to be considering making food besides a single Omega Sundae but it's discarding them for some reason. Can you provide an insight into why EatDrink is deciding:

Code:
Choosing food to consume.
No food available that's good enough. Found 0 items first. Moving on.
 
Last edited:

Theraze

Active member
For some reason, for you (but not for me), EatDrink decides that it's done enough effort after TMIM. This:
Pass 1: food.
food: At 7, consuming to 15 with 21583 meat.
Loading food map from Mafia's data
Copying food map using Mafia's data
Filtering by type
Finding prices
Setting values
Finding prices
Choosing food to consume.
No food available that's good enough. Found 0 items first. Moving on.
shows that it isn't actually considering ANYthing after it finishes the sundae... if it had, it would recalculate all the values, since they're different between TMIM and everything else. Either the filter_type or set_prices is nuking your stuff, since it never makes it to setting values.

Since it doesn't happen for me, here's the special LBP debugging version of EatDrink. It always print out, when it sees the LBP, what's happening regarding setting prices and filtering type. It should tell you during the filtering when the type is being checked, and if the LBP is filtered out for being the wrong type. After that, it should say that the LBP price is being set, and then print out (following that) what the current amount available is and whether or not that result is going to make it remove the LBP from consideration. Like so, on my not-logged-in gCLI:
LBP checking type
LBP having its price set
LBP have: 0 removing: true
 

Attachments

  • EatDrink.ash
    105 KB · Views: 26

Magus_Prime

Well-known member
I ran EatDrink-LBP at verbosity 8, after making the same change I did yesterday to the QUEST ITEM vprints, and got this:

Code:
> call scripts\EatDrink-LBP.ash

Running ZLib version: r37 (current)
Running EatDrink version: 3.1.9 (current)
Refreshing stash contents...
Stash list retrieved.
Internal checkpoint created.
Skipping favorites.
You're in ronin, so no shopping for you.
Starting EatDrink.ash (version 3.1.9).
Consuming up to 15 food, 0 booze, and 0 spleen
Considering food from inventory Coinmasters NPCs. Per-item budget cap is 75000.0.
Retrieval cap is 30000. Price will be a factor if you own it already.
An adventure has the value of 1500 meat. Mysticality subpoint is 10.0. Nonprime stat subpoint is 2.0.
Simulating only; no purchases or food/drink/spleen consumption.
Pass 1: food.
food: At 0, consuming to 15 with 25545 meat.
Loading food map from Mafia's data
Copying food map using Mafia's data
Filtering by type
LBP checking type
Finding prices
LBP having its price set
LBP have: 1 removing: false
Setting values
consummate hard-boiled egg full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate fried egg full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate egg salad full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate bagel full 4 advscore 27000.0 statscore 210.0 costscore 2.5 val 27207.0 od false
consummate sliced bread full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate hot dog bun full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate brownie full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate toast full 2 advscore 13500.0 statscore 420.0 costscore 5.0 val 13915.0 od false
consummate soup full 4 advscore 27000.0 statscore 210.0 costscore 2.5 val 27207.0 od false
consummate corn chips full 2 advscore 13500.0 statscore 420.0 costscore 5.0 val 13915.0 od false
consummate salad full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate salsa full 2 advscore 13500.0 statscore 420.0 costscore 5.0 val 13915.0 od false
consummate sauerkraut full 1 advscore 6000.0 statscore 840.0 costscore 10.0 val 6830.0 od false
consummate cheese slice full 2 advscore 13500.0 statscore 420.0 costscore 5.0 val 13915.0 od false
consummate melted cheese full 4 advscore 27000.0 statscore 210.0 costscore 2.5 val 27207.0 od false
consummate bacon full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate meatloaf full 5 advscore 33750.0 statscore 168.0 costscore 2.0 val 33916.0 od false
consummate steak full 4 advscore 27000.0 statscore 210.0 costscore 2.5 val 27207.0 od false
consummate cold cuts full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate frankfurter full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate french fries full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate baked potato full 4 advscore 27000.0 statscore 210.0 costscore 2.5 val 27207.0 od false
consummate ice cream full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate whipped cream full 2 advscore 13500.0 statscore 420.0 costscore 5.0 val 13915.0 od false
consummate sour cream full 1 advscore 6000.0 statscore 840.0 costscore 10.0 val 6830.0 od false
consummate strawberries full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
consummate sorbet full 3 advscore 20250.0 statscore 280.0 costscore 3.3333333333333335 val 20526.0 od false
immaculate grilled cheese full 4 advscore 30000.0 statscore 285.0 costscore 2.5 val 30282.0 od false
immaculate ice cream sandwich full 4 advscore 30000.0 statscore 285.0 costscore 2.5 val 30282.0 od false
immaculate hot dog full 4 advscore 30000.0 statscore 285.0 costscore 2.5 val 30282.0 od false
immaculate egg salad sandwich full 4 advscore 30000.0 statscore 285.0 costscore 2.5 val 30282.0 od false
perfect sandwich full 5 advscore 45000.0 statscore 306.0 costscore 2.0 val 45304.0 od false
perfect chef salad full 5 advscore 45000.0 statscore 306.0 costscore 2.0 val 45304.0 od false
perfect breakfast full 5 advscore 45000.0 statscore 300.0 costscore 2.0 val 45298.0 od false
sublime deluxe hot dog full 6 advscore 63000.0 statscore 255.0 costscore 1.6666666666666667 val 63253.0 od false
sublime stew full 6 advscore 63000.0 statscore 250.0 costscore 1.6666666666666667 val 63248.0 od false
sublime nachos full 6 advscore 63000.0 statscore 255.0 costscore 1.6666666666666667 val 63253.0 od false
Ultimate Breakfast Sandwich full 7 advscore 84000.0 statscore 265.7142857142857 costscore 1.4285714285714286 val 84264.0 od false
Loaded Baked Potato full 7 advscore 84000.0 statscore 265.7142857142857 costscore 1.4285714285714286 val 84264.0 od false
Omega Sundae full 7 advscore 84000.0 statscore 278.57142857142856 costscore 1.4285714285714286 val 84277.0 od false
If there are favorites still in consideration, they'll be here:
Finding prices
LBP having its price set
LBP have: 1 removing: false
Choosing food to consume.
If there are favorites still in consideration, they'll be here:
LBP checking type
LBP having its price set
LBP have: 1 removing: false
consummate hard-boiled egg full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate fried egg full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate egg salad full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate bagel full 4 advscore 2001.0 statscore 70.0 costscore 2.5 val 2068.0 od false
consummate sliced bread full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate hot dog bun full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate brownie full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate toast full 2 advscore 2001.0 statscore 140.0 costscore 5.0 val 2136.0 od false
consummate soup full 4 advscore 2001.0 statscore 70.0 costscore 2.5 val 2068.0 od false
consummate corn chips full 2 advscore 2001.0 statscore 140.0 costscore 5.0 val 2136.0 od false
consummate salad full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate salsa full 2 advscore 2001.0 statscore 140.0 costscore 5.0 val 2136.0 od false
consummate sauerkraut full 1 advscore 1334.0 statscore 280.0 costscore 10.0 val 1604.0 od false
consummate cheese slice full 2 advscore 2001.0 statscore 140.0 costscore 5.0 val 2136.0 od false
consummate melted cheese full 4 advscore 2001.0 statscore 70.0 costscore 2.5 val 2068.0 od false
consummate bacon full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate meatloaf full 5 advscore 2001.0 statscore 56.0 costscore 2.0 val 2055.0 od false
consummate steak full 4 advscore 2001.0 statscore 70.0 costscore 2.5 val 2068.0 od false
consummate cold cuts full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate frankfurter full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate french fries full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate baked potato full 4 advscore 2001.0 statscore 70.0 costscore 2.5 val 2068.0 od false
consummate ice cream full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate whipped cream full 2 advscore 2001.0 statscore 140.0 costscore 5.0 val 2136.0 od false
consummate sour cream full 1 advscore 1334.0 statscore 280.0 costscore 10.0 val 1604.0 od false
consummate strawberries full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
consummate sorbet full 3 advscore 2001.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 2091.0 od false
immaculate grilled cheese full 4 advscore 2668.0 statscore 95.0 costscore 2.5 val 2760.0 od false
immaculate ice cream sandwich full 4 advscore 2668.0 statscore 95.0 costscore 2.5 val 2760.0 od false
immaculate hot dog full 4 advscore 2668.0 statscore 95.0 costscore 2.5 val 2760.0 od false
immaculate egg salad sandwich full 4 advscore 2668.0 statscore 95.0 costscore 2.5 val 2760.0 od false
perfect sandwich full 5 advscore 4002.0 statscore 102.0 costscore 2.0 val 4102.0 od false
perfect chef salad full 5 advscore 4002.0 statscore 102.0 costscore 2.0 val 4102.0 od false
perfect breakfast full 5 advscore 4002.0 statscore 100.0 costscore 2.0 val 4100.0 od false
sublime deluxe hot dog full 6 advscore 5336.0 statscore 85.0 costscore 1.6666666666666667 val 5419.0 od false
sublime stew full 6 advscore 5336.0 statscore 83.33333333333333 costscore 1.6666666666666667 val 5417.0 od false
sublime nachos full 6 advscore 5336.0 statscore 85.0 costscore 1.6666666666666667 val 5419.0 od false
Ultimate Breakfast Sandwich full 7 advscore 6670.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 6757.0 od false
Loaded Baked Potato full 7 advscore 6670.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 6757.0 od false
Omega Sundae full 7 advscore 6670.0 statscore 92.85714285714285 costscore 1.4285714285714286 val 6761.0 od false
If there are favorites still in consideration, they'll be here:
LBP checking type
LBP having its price set
LBP have: 1 removing: false
consummate hard-boiled egg full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate fried egg full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate egg salad full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate bagel full 4 advscore 1752.0 statscore 70.0 costscore 2.5 val 1819.0 od false
consummate sliced bread full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate hot dog bun full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate brownie full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate toast full 2 advscore 1752.0 statscore 140.0 costscore 5.0 val 1887.0 od false
consummate soup full 4 advscore 1752.0 statscore 70.0 costscore 2.5 val 1819.0 od false
consummate corn chips full 2 advscore 1752.0 statscore 140.0 costscore 5.0 val 1887.0 od false
consummate salad full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate salsa full 2 advscore 1752.0 statscore 140.0 costscore 5.0 val 1887.0 od false
consummate sauerkraut full 1 advscore 1168.0 statscore 280.0 costscore 10.0 val 1438.0 od false
consummate cheese slice full 2 advscore 1752.0 statscore 140.0 costscore 5.0 val 1887.0 od false
consummate melted cheese full 4 advscore 1752.0 statscore 70.0 costscore 2.5 val 1819.0 od false
consummate bacon full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate meatloaf full 5 advscore 1752.0 statscore 56.0 costscore 2.0 val 1806.0 od false
consummate steak full 4 advscore 1752.0 statscore 70.0 costscore 2.5 val 1819.0 od false
consummate cold cuts full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate frankfurter full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate french fries full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate baked potato full 4 advscore 1752.0 statscore 70.0 costscore 2.5 val 1819.0 od false
consummate ice cream full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate whipped cream full 2 advscore 1752.0 statscore 140.0 costscore 5.0 val 1887.0 od false
consummate sour cream full 1 advscore 1168.0 statscore 280.0 costscore 10.0 val 1438.0 od false
consummate strawberries full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
consummate sorbet full 3 advscore 1752.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1842.0 od false
immaculate grilled cheese full 4 advscore 2336.0 statscore 95.0 costscore 2.5 val 2428.0 od false
immaculate ice cream sandwich full 4 advscore 2336.0 statscore 95.0 costscore 2.5 val 2428.0 od false
immaculate hot dog full 4 advscore 2336.0 statscore 95.0 costscore 2.5 val 2428.0 od false
immaculate egg salad sandwich full 4 advscore 2336.0 statscore 95.0 costscore 2.5 val 2428.0 od false
perfect sandwich full 5 advscore 3504.0 statscore 102.0 costscore 2.0 val 3604.0 od false
perfect chef salad full 5 advscore 3504.0 statscore 102.0 costscore 2.0 val 3604.0 od false
perfect breakfast full 5 advscore 3504.0 statscore 100.0 costscore 2.0 val 3602.0 od false
sublime deluxe hot dog full 6 advscore 4672.0 statscore 85.0 costscore 1.6666666666666667 val 4755.0 od false
sublime stew full 6 advscore 4672.0 statscore 83.33333333333333 costscore 1.6666666666666667 val 4753.0 od false
sublime nachos full 6 advscore 4672.0 statscore 85.0 costscore 1.6666666666666667 val 4755.0 od false
Ultimate Breakfast Sandwich full 7 advscore 5840.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 5927.0 od false
Loaded Baked Potato full 7 advscore 5840.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 5927.0 od false
Omega Sundae full 7 advscore 5840.0 statscore 92.85714285714285 costscore 1.4285714285714286 val 5931.0 od false
If there are favorites still in consideration, they'll be here:
LBP checking type
LBP having its price set
LBP have: 1 removing: false
consummate hard-boiled egg full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate fried egg full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate egg salad full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate bagel full 4 advscore 1503.0 statscore 70.0 costscore 2.5 val 1570.0 od false
consummate sliced bread full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate hot dog bun full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate brownie full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate toast full 2 advscore 1503.0 statscore 140.0 costscore 5.0 val 1638.0 od false
consummate soup full 4 advscore 1503.0 statscore 70.0 costscore 2.5 val 1570.0 od false
consummate corn chips full 2 advscore 1503.0 statscore 140.0 costscore 5.0 val 1638.0 od false
consummate salad full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate salsa full 2 advscore 1503.0 statscore 140.0 costscore 5.0 val 1638.0 od false
consummate sauerkraut full 1 advscore 1002.0 statscore 280.0 costscore 10.0 val 1272.0 od false
consummate cheese slice full 2 advscore 1503.0 statscore 140.0 costscore 5.0 val 1638.0 od false
consummate melted cheese full 4 advscore 1503.0 statscore 70.0 costscore 2.5 val 1570.0 od false
consummate bacon full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate meatloaf full 5 advscore 1503.0 statscore 56.0 costscore 2.0 val 1557.0 od false
consummate steak full 4 advscore 1503.0 statscore 70.0 costscore 2.5 val 1570.0 od false
consummate cold cuts full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate frankfurter full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate french fries full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate baked potato full 4 advscore 1503.0 statscore 70.0 costscore 2.5 val 1570.0 od false
consummate ice cream full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate whipped cream full 2 advscore 1503.0 statscore 140.0 costscore 5.0 val 1638.0 od false
consummate sour cream full 1 advscore 1002.0 statscore 280.0 costscore 10.0 val 1272.0 od false
consummate strawberries full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
consummate sorbet full 3 advscore 1503.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1593.0 od false
immaculate grilled cheese full 4 advscore 2004.0 statscore 95.0 costscore 2.5 val 2096.0 od false
immaculate ice cream sandwich full 4 advscore 2004.0 statscore 95.0 costscore 2.5 val 2096.0 od false
immaculate hot dog full 4 advscore 2004.0 statscore 95.0 costscore 2.5 val 2096.0 od false
immaculate egg salad sandwich full 4 advscore 2004.0 statscore 95.0 costscore 2.5 val 2096.0 od false
perfect sandwich full 5 advscore 3006.0 statscore 102.0 costscore 2.0 val 3106.0 od false
perfect chef salad full 5 advscore 3006.0 statscore 102.0 costscore 2.0 val 3106.0 od false
perfect breakfast full 5 advscore 3006.0 statscore 100.0 costscore 2.0 val 3104.0 od false
sublime deluxe hot dog full 6 advscore 4008.0 statscore 85.0 costscore 1.6666666666666667 val 4091.0 od false
sublime stew full 6 advscore 4008.0 statscore 83.33333333333333 costscore 1.6666666666666667 val 4089.0 od false
sublime nachos full 6 advscore 4008.0 statscore 85.0 costscore 1.6666666666666667 val 4091.0 od false
Ultimate Breakfast Sandwich full 7 advscore 5010.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 5097.0 od false
Loaded Baked Potato full 7 advscore 5010.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 5097.0 od false
Omega Sundae full 7 advscore 5010.0 statscore 92.85714285714285 costscore 1.4285714285714286 val 5101.0 od false
If there are favorites still in consideration, they'll be here:
LBP checking type
LBP having its price set
LBP have: 1 removing: false
consummate hard-boiled egg full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate fried egg full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate egg salad full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate bagel full 4 advscore 1254.0 statscore 70.0 costscore 2.5 val 1321.0 od false
consummate sliced bread full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate hot dog bun full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate brownie full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate toast full 2 advscore 1254.0 statscore 140.0 costscore 5.0 val 1389.0 od false
consummate soup full 4 advscore 1254.0 statscore 70.0 costscore 2.5 val 1321.0 od false
consummate corn chips full 2 advscore 1254.0 statscore 140.0 costscore 5.0 val 1389.0 od false
consummate salad full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate salsa full 2 advscore 1254.0 statscore 140.0 costscore 5.0 val 1389.0 od false
consummate sauerkraut full 1 advscore 836.0 statscore 280.0 costscore 10.0 val 1106.0 od false
consummate cheese slice full 2 advscore 1254.0 statscore 140.0 costscore 5.0 val 1389.0 od false
consummate melted cheese full 4 advscore 1254.0 statscore 70.0 costscore 2.5 val 1321.0 od false
consummate bacon full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate meatloaf full 5 advscore 1254.0 statscore 56.0 costscore 2.0 val 1308.0 od false
consummate steak full 4 advscore 1254.0 statscore 70.0 costscore 2.5 val 1321.0 od false
consummate cold cuts full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate frankfurter full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate french fries full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate baked potato full 4 advscore 1254.0 statscore 70.0 costscore 2.5 val 1321.0 od false
consummate ice cream full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate whipped cream full 2 advscore 1254.0 statscore 140.0 costscore 5.0 val 1389.0 od false
consummate sour cream full 1 advscore 836.0 statscore 280.0 costscore 10.0 val 1106.0 od false
consummate strawberries full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
consummate sorbet full 3 advscore 1254.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1344.0 od false
immaculate grilled cheese full 4 advscore 1672.0 statscore 95.0 costscore 2.5 val 1764.0 od false
immaculate ice cream sandwich full 4 advscore 1672.0 statscore 95.0 costscore 2.5 val 1764.0 od false
immaculate hot dog full 4 advscore 1672.0 statscore 95.0 costscore 2.5 val 1764.0 od false
immaculate egg salad sandwich full 4 advscore 1672.0 statscore 95.0 costscore 2.5 val 1764.0 od false
perfect sandwich full 5 advscore 2508.0 statscore 102.0 costscore 2.0 val 2608.0 od false
perfect chef salad full 5 advscore 2508.0 statscore 102.0 costscore 2.0 val 2608.0 od false
perfect breakfast full 5 advscore 2508.0 statscore 100.0 costscore 2.0 val 2606.0 od false
sublime deluxe hot dog full 6 advscore 3344.0 statscore 85.0 costscore 1.6666666666666667 val 3427.0 od false
sublime stew full 6 advscore 3344.0 statscore 83.33333333333333 costscore 1.6666666666666667 val 3425.0 od false
sublime nachos full 6 advscore 3344.0 statscore 85.0 costscore 1.6666666666666667 val 3427.0 od false
Ultimate Breakfast Sandwich full 7 advscore 4180.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 4267.0 od false
Loaded Baked Potato full 7 advscore 4180.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 4267.0 od false
Omega Sundae full 7 advscore 4180.0 statscore 92.85714285714285 costscore 1.4285714285714286 val 4271.0 od false
If there are favorites still in consideration, they'll be here:
LBP checking type
LBP having its price set
LBP have: 1 removing: false
consummate hard-boiled egg full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate fried egg full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate egg salad full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate bagel full 4 advscore 1005.0 statscore 70.0 costscore 2.5 val 1072.0 od false
consummate sliced bread full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate hot dog bun full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate brownie full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate toast full 2 advscore 1005.0 statscore 140.0 costscore 5.0 val 1140.0 od false
consummate soup full 4 advscore 1005.0 statscore 70.0 costscore 2.5 val 1072.0 od false
consummate corn chips full 2 advscore 1005.0 statscore 140.0 costscore 5.0 val 1140.0 od false
consummate salad full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate salsa full 2 advscore 1005.0 statscore 140.0 costscore 5.0 val 1140.0 od false
consummate sauerkraut full 1 advscore 670.0 statscore 280.0 costscore 10.0 val 940.0 od false
consummate cheese slice full 2 advscore 1005.0 statscore 140.0 costscore 5.0 val 1140.0 od false
consummate melted cheese full 4 advscore 1005.0 statscore 70.0 costscore 2.5 val 1072.0 od false
consummate bacon full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate meatloaf full 5 advscore 1005.0 statscore 56.0 costscore 2.0 val 1059.0 od false
consummate steak full 4 advscore 1005.0 statscore 70.0 costscore 2.5 val 1072.0 od false
consummate cold cuts full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate frankfurter full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate french fries full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate baked potato full 4 advscore 1005.0 statscore 70.0 costscore 2.5 val 1072.0 od false
consummate ice cream full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate whipped cream full 2 advscore 1005.0 statscore 140.0 costscore 5.0 val 1140.0 od false
consummate sour cream full 1 advscore 670.0 statscore 280.0 costscore 10.0 val 940.0 od false
consummate strawberries full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate sorbet full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
immaculate grilled cheese full 4 advscore 1340.0 statscore 95.0 costscore 2.5 val 1432.0 od false
immaculate ice cream sandwich full 4 advscore 1340.0 statscore 95.0 costscore 2.5 val 1432.0 od false
immaculate hot dog full 4 advscore 1340.0 statscore 95.0 costscore 2.5 val 1432.0 od false
immaculate egg salad sandwich full 4 advscore 1340.0 statscore 95.0 costscore 2.5 val 1432.0 od false
perfect sandwich full 5 advscore 2010.0 statscore 102.0 costscore 2.0 val 2110.0 od false
perfect chef salad full 5 advscore 2010.0 statscore 102.0 costscore 2.0 val 2110.0 od false
perfect breakfast full 5 advscore 2010.0 statscore 100.0 costscore 2.0 val 2108.0 od false
sublime deluxe hot dog full 6 advscore 2680.0 statscore 85.0 costscore 1.6666666666666667 val 2763.0 od false
sublime stew full 6 advscore 2680.0 statscore 83.33333333333333 costscore 1.6666666666666667 val 2761.0 od false
sublime nachos full 6 advscore 2680.0 statscore 85.0 costscore 1.6666666666666667 val 2763.0 od false
Ultimate Breakfast Sandwich full 7 advscore 3350.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 3437.0 od false
Loaded Baked Potato full 7 advscore 3350.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 3437.0 od false
Omega Sundae full 7 advscore 3350.0 statscore 92.85714285714285 costscore 1.4285714285714286 val 3441.0 od false
If there are favorites still in consideration, they'll be here:
LBP checking type
LBP having its price set
LBP have: 1 removing: false
consummate hard-boiled egg full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate fried egg full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate egg salad full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate bagel full 4 advscore 1005.0 statscore 70.0 costscore 2.5 val 1072.0 od false
consummate sliced bread full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate hot dog bun full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate brownie full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate toast full 2 advscore 1005.0 statscore 140.0 costscore 5.0 val 1140.0 od false
consummate soup full 4 advscore 1005.0 statscore 70.0 costscore 2.5 val 1072.0 od false
consummate corn chips full 2 advscore 1005.0 statscore 140.0 costscore 5.0 val 1140.0 od false
consummate salad full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate salsa full 2 advscore 1005.0 statscore 140.0 costscore 5.0 val 1140.0 od false
consummate sauerkraut full 1 advscore 670.0 statscore 280.0 costscore 10.0 val 940.0 od false
consummate cheese slice full 2 advscore 1005.0 statscore 140.0 costscore 5.0 val 1140.0 od false
consummate melted cheese full 4 advscore 1005.0 statscore 70.0 costscore 2.5 val 1072.0 od false
consummate bacon full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate meatloaf full 5 advscore 1005.0 statscore 56.0 costscore 2.0 val 1059.0 od false
consummate steak full 4 advscore 1005.0 statscore 70.0 costscore 2.5 val 1072.0 od false
consummate cold cuts full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate frankfurter full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate french fries full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate baked potato full 4 advscore 1005.0 statscore 70.0 costscore 2.5 val 1072.0 od false
consummate ice cream full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate whipped cream full 2 advscore 1005.0 statscore 140.0 costscore 5.0 val 1140.0 od false
consummate sour cream full 1 advscore 670.0 statscore 280.0 costscore 10.0 val 940.0 od false
consummate strawberries full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
consummate sorbet full 3 advscore 1005.0 statscore 93.33333333333333 costscore 3.3333333333333335 val 1095.0 od false
immaculate grilled cheese full 4 advscore 1340.0 statscore 95.0 costscore 2.5 val 1432.0 od false
immaculate ice cream sandwich full 4 advscore 1340.0 statscore 95.0 costscore 2.5 val 1432.0 od false
immaculate hot dog full 4 advscore 1340.0 statscore 95.0 costscore 2.5 val 1432.0 od false
immaculate egg salad sandwich full 4 advscore 1340.0 statscore 95.0 costscore 2.5 val 1432.0 od false
perfect sandwich full 5 advscore 2010.0 statscore 102.0 costscore 2.0 val 2110.0 od false
perfect chef salad full 5 advscore 2010.0 statscore 102.0 costscore 2.0 val 2110.0 od false
perfect breakfast full 5 advscore 2010.0 statscore 100.0 costscore 2.0 val 2108.0 od false
sublime deluxe hot dog full 6 advscore 2680.0 statscore 85.0 costscore 1.6666666666666667 val 2763.0 od false
sublime stew full 6 advscore 2680.0 statscore 83.33333333333333 costscore 1.6666666666666667 val 2761.0 od false
sublime nachos full 6 advscore 2680.0 statscore 85.0 costscore 1.6666666666666667 val 2763.0 od false
Ultimate Breakfast Sandwich full 7 advscore 3350.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 3437.0 od false
Loaded Baked Potato full 7 advscore 3350.0 statscore 88.57142857142857 costscore 1.4285714285714286 val 3437.0 od false
Omega Sundae full 7 advscore 3350.0 statscore 92.85714285714285 costscore 1.4285714285714286 val 3441.0 od false
Obtaining Omega Sundae to consume.
simulating retrieval of one Omega Sundae.
1: Omega Sundae lev:0 gain:7.0 adv:35.0 musc:25.0 myst:55.0 mox:25.0 meat:10 own:1 value:12039.57142857143
Omega Sundae full 7 advscore 7500.0 statscore 92.85714285714285 costscore 1.4285714285714286 val 7591.0 od false
Pass 1: food.
food: At 7, consuming to 15 with 25545 meat.
Loading food map from Mafia's data
Copying food map using Mafia's data
Filtering by type
LBP checking type
Finding prices
LBP having its price set
LBP have: 0 removing: true
Setting values
Finding prices
Choosing food to consume.
No food available that's good enough. Found 0 items first. Moving on.
LBP checking type
LBP having its price set
LBP have: 0 removing: true
LBP checking type
LBP having its price set
LBP have: 0 removing: true
LBP checking type
LBP having its price set
LBP have: 0 removing: true
LBP checking type
LBP having its price set
LBP have: 0 removing: true
LBP checking type
LBP having its price set
LBP have: 0 removing: true
LBP checking type
LBP having its price set
LBP have: 0 removing: true
Pass 2: drink.
Skipping drink.
Pass 3: spleen.
Skipping spleen.
Pass 4: drink.
Skipping drink.
Finished.
Spent 0 meat with additional expenditures of 0 meat. Gained Fullness: 7. Inebriety: 0. Spleen: 0.
Adventures: 35. Muscle: 25. Moxie: 25. Mysticality: 55.
Eating, drinking, and spleening complete. Commence merrymaking (at your own discretion).
******************************************
Now, to recap...
******************************************
Starting EatDrink.ash (version 3.1.9).
Consuming up to 15 food, 0 booze, and 0 spleen
Considering food from inventory Coinmasters NPCs. Per-item budget cap is 75000.0.
Retrieval cap is 30000. Price will be a factor if you own it already.
An adventure has the value of 1500 meat. Mysticality subpoint is 10.0. Nonprime stat subpoint is 2.0.
Simulating only; no purchases or food/drink/spleen consumption.
food: At 0, consuming to 15 with 25545 meat.
1: Omega Sundae lev:0 gain:7.0 adv:35.0 musc:25.0 myst:55.0 mox:25.0 meat:10 own:1 value:12039.57142857143
food: At 7, consuming to 15 with 25545 meat.
Finished.
Spent 0 meat with additional expenditures of 0 meat. Gained Fullness: 7. Inebriety: 0. Spleen: 0.
Adventures: 35. Muscle: 25. Moxie: 25. Mysticality: 55.
Eating, drinking, and spleening complete. Commence merrymaking (at your own discretion).


Here's every EatDrink variable with the current value:

Code:
eatdrink_accordionGet	true
eatdrink_accurateMake	true
eatdrink_ate_choco	Frankruary 2:0
eatdrink_ate_fancy	Frankruary 2:0
eatdrink_ate_vitac	Frankruary 2:0
eatdrink_autosellWhileRonin	false
eatdrink_avoid_astral_energy_drink	true
eatdrink_avoid_astral_hot_dog	true
eatdrink_avoid_astral_pilsner	true
eatdrink_avoid_booze-soaked_cherry	true
eatdrink_avoid_giant_marshmallow	true
eatdrink_avoid_gin-soaked_blotter_paper	true
eatdrink_avoid_sponge_cake	true
eatdrink_avoid_wet_stew	true
eatdrink_budget	50000
eatdrink_considerCostWhenOwned	true
eatdrink_costOfPull	3000
eatdrink_fav_pr0n_chow_mein	true
eatdrink_fav_rockin'_wagon	true
eatdrink_fav_twinkly_wad	true
eatdrink_favUse	false
eatdrink_getBartender	30000
eatdrink_getChef	5000
eatdrink_gloriousLunch	true
eatdrink_hardcoreServants	2
eatdrink_loopCount	4
eatdrink_make	true
eatdrink_maxAge	2.0
eatdrink_minimumAverage	1.0
eatdrink_minimumQuality	0
eatdrink_noNoodles	false
eatdrink_ode	true
eatdrink_pause	0
eatdrink_piePriority	true
eatdrink_priceFlexibility	1.5
eatdrink_priceOfNontradeables	999999999
eatdrink_priceOfQuestItems	10
eatdrink_priceOfUnknowns	999999999
eatdrink_simConsume	true
eatdrink_simLevel	0
eatdrink_simRonin	false
eatdrink_stepMeat	-1
eatdrink_suppressNoMilk	true
eatdrink_suppressOverdrink	true
eatdrink_valueOfNonPrimeStat	2
eatdrink_valueOfPrimeStat	10
 

Theraze

Active member
Okay, here's the relevant part:
food: At 7, consuming to 15 with 25545 meat.
Loading food map from Mafia's data
Copying food map using Mafia's data
Filtering by type
LBP checking type
Finding prices
LBP having its price set
LBP have: 0 removing: true
Setting values
Finding prices
Choosing food to consume.
No food available that's good enough. Found 0 items first. Moving on.
You can clearly see that the LBP went from 1 available, not removing, to 0 available, removing. Why? Not sure... but at least now we know which portion of the code is making the problem happen. Kind of. :)

What does this mean? Well, post-TMIM, it's going with that we don't have and can't make a LBP and it's not available from NPC stores, daily stores (moon signs), the mall, or coinmasters. Obviously the only one of these we actually WANT to trigger is that it's available to make, so... we're going to move focus from the eatdrink() function, to set_prices(), to set_price(), to availability().

So, what I've done in the EatDrink-LBP2 is given you lines going from:
if (con.it == $item[loaded baked potato]) print_html(con.it+"- amount:"+item_amount(con.it)+" using:"+con.using+" partial:"+usingMake[con.it]);
which would be the name, amount in inventory, how many you're using, and how many partial (how many have been used so far as ingredients) LBPs have been used, over to this:
if (con.it == $item[loaded baked potato]) print_html(con.it+"- after:"+con.have);
which would be the name and how many are available after the whole crazy thing finishes out. Between those are before (how many we think are ready before any searching), simingredients (how many of each ingredient we think we are using in simulation), ingredients (how many of each ingredient we think we're using), maketotal (how many we think we have after checking consumption totals), and making (how many we think we can make ourselves).

I expect this to get very... full. What I need is between finding prices and setting value up in the original consumption (where it exists) and finding prices and setting value down below (where it's been eliminated as an option for some crazy reason).
 

Attachments

  • EatDrink.ash
    105.8 KB · Views: 21

Magus_Prime

Well-known member
Here's the output from LBP2 at verbosity 3:

Code:
> call scripts\EatDrink-LBP2.ash

Sending kmail to dj_d...
Checking for updates (running EatDrink ver. 3.1.9)...
Running EatDrink version: 3.1.9 (current)
Refreshing stash contents...
Stash list retrieved.
Internal checkpoint created.
Skipping favorites.
You're in ronin, so no shopping for you.
Starting EatDrink.ash (version 3.1.9).
Consuming up to 15 food, 0 booze, and 0 spleen
Considering food from inventory Coinmasters NPCs. Per-item budget cap is 75000.0.
Retrieval cap is 30000. Price will be a factor if you own it already.
An adventure has the value of 1500 meat. Mysticality subpoint is 10.0. Nonprime stat subpoint is 2.0.
Simulating only; no purchases or food/drink/spleen consumption.
Pass 1: food.
food: At 0, consuming to 15 with 31649 meat.
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Searching for "milk of magnesium"...
Search complete.
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:-2 number:-2
Loaded Baked Potato- ingredient:-1 number:-1
Loaded Baked Potato- ingredient:-1 number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:-2 number:-2
Loaded Baked Potato- ingredient:-1 number:-1
Loaded Baked Potato- ingredient:-1 number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:-2 number:-2
Loaded Baked Potato- ingredient:-1 number:-1
Loaded Baked Potato- ingredient:-1 number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:-2 number:-2
Loaded Baked Potato- ingredient:-1 number:-1
Loaded Baked Potato- ingredient:-1 number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:-2 number:-2
Loaded Baked Potato- ingredient:-1 number:-1
Loaded Baked Potato- ingredient:-1 number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:-2 number:-2
Loaded Baked Potato- ingredient:-1 number:-1
Loaded Baked Potato- ingredient:-1 number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:-2 number:-2
Loaded Baked Potato- ingredient:-1 number:-1
Loaded Baked Potato- ingredient:-1 number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:-2 number:-2
Loaded Baked Potato- ingredient:-1 number:-1
Loaded Baked Potato- ingredient:-1 number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:-2 number:-2
Loaded Baked Potato- ingredient:-1 number:-1
Loaded Baked Potato- ingredient:-1 number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:-2 number:-2
Loaded Baked Potato- ingredient:-1 number:-1
Loaded Baked Potato- ingredient:-1 number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:-2 number:-2
Loaded Baked Potato- ingredient:-1 number:-1
Loaded Baked Potato- ingredient:-1 number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
simulating retrieval of one Omega Sundae.
1: Omega Sundae lev:0 gain:7.0 adv:35.0 musc:25.0 myst:55.0 mox:25.0 meat:10 own:1 value:12039.57142857143
Pass 1: food.
food: At 7, consuming to 15 with 31649 meat.
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- simingredient:-2 number:-2
Loaded Baked Potato- simingredient:-1 number:-1
Loaded Baked Potato- simingredient:-1 number:-1
Loaded Baked Potato- maketotal:0 making:0
Loaded Baked Potato- after:0
No food available that's good enough. Found 0 items first. Moving on.
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- simingredient:-2 number:-2
Loaded Baked Potato- simingredient:-1 number:-1
Loaded Baked Potato- simingredient:-1 number:-1
Loaded Baked Potato- maketotal:0 making:0
Loaded Baked Potato- after:0
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- simingredient:-2 number:-2
Loaded Baked Potato- simingredient:-1 number:-1
Loaded Baked Potato- simingredient:-1 number:-1
Loaded Baked Potato- maketotal:0 making:0
Loaded Baked Potato- after:0
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- simingredient:-2 number:-2
Loaded Baked Potato- simingredient:-1 number:-1
Loaded Baked Potato- simingredient:-1 number:-1
Loaded Baked Potato- maketotal:0 making:0
Loaded Baked Potato- after:0
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- simingredient:-2 number:-2
Loaded Baked Potato- simingredient:-1 number:-1
Loaded Baked Potato- simingredient:-1 number:-1
Loaded Baked Potato- maketotal:0 making:0
Loaded Baked Potato- after:0
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- simingredient:-2 number:-2
Loaded Baked Potato- simingredient:-1 number:-1
Loaded Baked Potato- simingredient:-1 number:-1
Loaded Baked Potato- maketotal:0 making:0
Loaded Baked Potato- after:0
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- simingredient:-2 number:-2
Loaded Baked Potato- simingredient:-1 number:-1
Loaded Baked Potato- simingredient:-1 number:-1
Loaded Baked Potato- maketotal:0 making:0
Loaded Baked Potato- after:0
Pass 2: drink.
Skipping drink.
Pass 3: spleen.
Skipping spleen.
Pass 4: drink.
Skipping drink.
Finished.
Spent 0 meat with additional expenditures of 0 meat. Gained Fullness: 7. Inebriety: 0. Spleen: 0.
Adventures: 35. Muscle: 25. Moxie: 25. Mysticality: 55.
Eating, drinking, and spleening complete. Commence merrymaking (at your own discretion).
******************************************
Now, to recap...
******************************************
Starting EatDrink.ash (version 3.1.9).
Consuming up to 15 food, 0 booze, and 0 spleen
Considering food from inventory Coinmasters NPCs. Per-item budget cap is 75000.0.
Retrieval cap is 30000. Price will be a factor if you own it already.
An adventure has the value of 1500 meat. Mysticality subpoint is 10.0. Nonprime stat subpoint is 2.0.
Simulating only; no purchases or food/drink/spleen consumption.
food: At 0, consuming to 15 with 31649 meat.
1: Omega Sundae lev:0 gain:7.0 adv:35.0 musc:25.0 myst:55.0 mox:25.0 meat:10 own:1 value:12039.57142857143
food: At 7, consuming to 15 with 31649 meat.
Finished.
Spent 0 meat with additional expenditures of 0 meat. Gained Fullness: 7. Inebriety: 0. Spleen: 0.
Adventures: 35. Muscle: 25. Moxie: 25. Mysticality: 55.
Eating, drinking, and spleening complete. Commence merrymaking (at your own discretion).
 

Theraze

Active member
PROBABLY not, Winterbay. Unfortunately, I told it to print out both the total amount of ingredients available/used as well as the modified count... which means that it prints the same thing twice. Hopefully this version will both display the ingredients used as well as the count. Since we know some ingredient is used twice and 2 are used once. Which would be correct, since the Omega Sundae uses 2 cream, 1 fruit, 1 dough. Anyways, first we want to validate that only the 'right' ingredients are being used. After that, we can fake the Omega Sundae usage and use have_ingredients to try to simulate without all the other craziness.... since the version after LBP3 (attached) is going to be even crazy-spammier. :)

Magus, if you can run LBP3 and see what it shows. I'm expecting the right ingredients are being used, but...

Also, if you can do a quick inv cosmic before and after running the script and having the problem, that would be great. Want to make sure that mafia knows you still have what you need for the LBP as well, since that's the side we can't control well through scripts. :)
 

Attachments

  • EatDrink.ash
    105.8 KB · Views: 16

Magus_Prime

Well-known member
Ran LBP3 and ran into some strangeness. Here's the before:

Code:
> inv cosmic

Cosmic Calorie (572)
cosmic cheese (30)
cosmic cream (14)
cosmic dough (8)
cosmic egg (28)
cosmic fruit (26)
cosmic potato (20)
cosmic potted meat product (12)
cosmic vegetable (21)

Here's the simulation:

Code:
> call scripts\EatDrink-LBP3.ash

Sending kmail to dj_d...
Checking for updates (running EatDrink ver. 3.1.9)...
Running EatDrink version: 3.1.9 (current)
Refreshing stash contents...
Stash list retrieved.
Internal checkpoint created.
Skipping favorites.
You're in ronin, so no shopping for you.
Starting EatDrink.ash (version 3.1.9).
Consuming up to 15 food, 0 booze, and 0 spleen
Considering food from inventory Coinmasters NPCs. Per-item budget cap is 75000.0.
Retrieval cap is 30000. Price will be a factor if you own it already.
An adventure has the value of 1500 meat. Mysticality subpoint is 10.0. Nonprime stat subpoint is 2.0.
Simulating only; no purchases or food/drink/spleen consumption.
Pass 1: food.
food: At 0, consuming to 15 with 48517 meat.
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Searching for "milk of magnesium"...
Search complete.
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:cosmic cream number:-2
Loaded Baked Potato- ingredient:cosmic dough number:-1
Loaded Baked Potato- ingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:cosmic cream number:-2
Loaded Baked Potato- ingredient:cosmic dough number:-1
Loaded Baked Potato- ingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:cosmic cream number:-2
Loaded Baked Potato- ingredient:cosmic dough number:-1
Loaded Baked Potato- ingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:cosmic cream number:-2
Loaded Baked Potato- ingredient:cosmic dough number:-1
Loaded Baked Potato- ingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:cosmic cream number:-2
Loaded Baked Potato- ingredient:cosmic dough number:-1
Loaded Baked Potato- ingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:cosmic cream number:-2
Loaded Baked Potato- ingredient:cosmic dough number:-1
Loaded Baked Potato- ingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:cosmic cream number:-2
Loaded Baked Potato- ingredient:cosmic dough number:-1
Loaded Baked Potato- ingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:cosmic cream number:-2
Loaded Baked Potato- ingredient:cosmic dough number:-1
Loaded Baked Potato- ingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:cosmic cream number:-2
Loaded Baked Potato- ingredient:cosmic dough number:-1
Loaded Baked Potato- ingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:cosmic cream number:-2
Loaded Baked Potato- ingredient:cosmic dough number:-1
Loaded Baked Potato- ingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:cosmic cream number:-2
Loaded Baked Potato- ingredient:cosmic dough number:-1
Loaded Baked Potato- ingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
simulating retrieval of one Omega Sundae.
1: Omega Sundae lev:0 gain:7.0 adv:35.0 musc:25.0 myst:55.0 mox:25.0 meat:10 own:1 value:12039.57142857143
Pass 1: food.
food: At 7, consuming to 15 with 48517 meat.
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- simingredient:cosmic cream number:-2
Loaded Baked Potato- simingredient:cosmic dough number:-1
Loaded Baked Potato- simingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:0 making:0
Loaded Baked Potato- after:0
No food available that's good enough. Found 0 items first. Moving on.
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- simingredient:cosmic cream number:-2
Loaded Baked Potato- simingredient:cosmic dough number:-1
Loaded Baked Potato- simingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:0 making:0
Loaded Baked Potato- after:0
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- simingredient:cosmic cream number:-2
Loaded Baked Potato- simingredient:cosmic dough number:-1
Loaded Baked Potato- simingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:0 making:0
Loaded Baked Potato- after:0
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- simingredient:cosmic cream number:-2
Loaded Baked Potato- simingredient:cosmic dough number:-1
Loaded Baked Potato- simingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:0 making:0
Loaded Baked Potato- after:0
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- simingredient:cosmic cream number:-2
Loaded Baked Potato- simingredient:cosmic dough number:-1
Loaded Baked Potato- simingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:0 making:0
Loaded Baked Potato- after:0
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- simingredient:cosmic cream number:-2
Loaded Baked Potato- simingredient:cosmic dough number:-1
Loaded Baked Potato- simingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:0 making:0
Loaded Baked Potato- after:0
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- simingredient:cosmic cream number:-2
Loaded Baked Potato- simingredient:cosmic dough number:-1
Loaded Baked Potato- simingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:0 making:0
Loaded Baked Potato- after:0
Pass 2: drink.
Skipping drink.
Pass 3: spleen.
Skipping spleen.
Pass 4: drink.
Skipping drink.
Finished.
Spent 0 meat with additional expenditures of 0 meat. Gained Fullness: 7. Inebriety: 0. Spleen: 0.
Adventures: 35. Muscle: 25. Moxie: 25. Mysticality: 55.
Eating, drinking, and spleening complete. Commence merrymaking (at your own discretion).
******************************************
Now, to recap...
******************************************
Starting EatDrink.ash (version 3.1.9).
Consuming up to 15 food, 0 booze, and 0 spleen
Considering food from inventory Coinmasters NPCs. Per-item budget cap is 75000.0.
Retrieval cap is 30000. Price will be a factor if you own it already.
An adventure has the value of 1500 meat. Mysticality subpoint is 10.0. Nonprime stat subpoint is 2.0.
Simulating only; no purchases or food/drink/spleen consumption.
food: At 0, consuming to 15 with 48517 meat.
1: Omega Sundae lev:0 gain:7.0 adv:35.0 musc:25.0 myst:55.0 mox:25.0 meat:10 own:1 value:12039.57142857143
food: At 7, consuming to 15 with 48517 meat.
Finished.
Spent 0 meat with additional expenditures of 0 meat. Gained Fullness: 7. Inebriety: 0. Spleen: 0.
Adventures: 35. Muscle: 25. Moxie: 25. Mysticality: 55.
Eating, drinking, and spleening complete. Commence merrymaking (at your own discretion).

Here's the run with attempted consumption:

Code:
> call scripts\EatDrink-LBP3.ash

Refreshing stash contents...
Stash list retrieved.
Internal checkpoint created.
Skipping favorites.
You're in ronin, so no shopping for you.
Starting EatDrink.ash (version 3.1.9).
Consuming up to 15 food, 0 booze, and 0 spleen
Considering food from inventory Coinmasters NPCs. Per-item budget cap is 75000.0.
Retrieval cap is 30000. Price will be a factor if you own it already.
An adventure has the value of 1500 meat. Mysticality subpoint is 10.0. Nonprime stat subpoint is 2.0.
Pass 1: food.
food: At 0, consuming to 15 with 48517 meat.
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:cosmic cream number:-2
Loaded Baked Potato- ingredient:cosmic dough number:-1
Loaded Baked Potato- ingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:cosmic cream number:-2
Loaded Baked Potato- ingredient:cosmic dough number:-1
Loaded Baked Potato- ingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:cosmic cream number:-2
Loaded Baked Potato- ingredient:cosmic dough number:-1
Loaded Baked Potato- ingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:cosmic cream number:-2
Loaded Baked Potato- ingredient:cosmic dough number:-1
Loaded Baked Potato- ingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:cosmic cream number:-2
Loaded Baked Potato- ingredient:cosmic dough number:-1
Loaded Baked Potato- ingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:cosmic cream number:-2
Loaded Baked Potato- ingredient:cosmic dough number:-1
Loaded Baked Potato- ingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:cosmic cream number:-2
Loaded Baked Potato- ingredient:cosmic dough number:-1
Loaded Baked Potato- ingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:cosmic cream number:-2
Loaded Baked Potato- ingredient:cosmic dough number:-1
Loaded Baked Potato- ingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:cosmic cream number:-2
Loaded Baked Potato- ingredient:cosmic dough number:-1
Loaded Baked Potato- ingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:cosmic cream number:-2
Loaded Baked Potato- ingredient:cosmic dough number:-1
Loaded Baked Potato- ingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Loaded Baked Potato- amount:0 using:0 partial:0
Loaded Baked Potato- before:0
Loaded Baked Potato- ingredient:cosmic cream number:-2
Loaded Baked Potato- ingredient:cosmic dough number:-1
Loaded Baked Potato- ingredient:cosmic fruit number:-1
Loaded Baked Potato- maketotal:1 making:1
Loaded Baked Potato- after:1
Getting 1 chef-in-the-box in 0 seconds
autoBuyPriceLimit => 7500.0
Verifying ingredients for chef-in-the-box (1)...
Verifying ingredients for nothing-in-the-box (1)...
You need 1 more box to continue.
autoBuyPriceLimit => 30000
Unable to get your chef for under 5000 meat!

I don't recall EatDrink failing in this way before while in Ronin. Why is it trying to by in-the-box ingredients when that's not possible?

Edit: I just ascended so I can test again later today.
 
Last edited:

Theraze

Active member
Release version has been failing in that way since January, at least. My work-versions have been that way since sometime earlier. The posts just before where you started talking actually refer to the new variable that affects those...

Okay, I'm wandering. Anyways, with those items being used, it's still officially valid. After it wipes and starts over, it isn't. Why? Still no clue. :( And it still finds it as possible even with the ingredients in, as it says... something about the second wave is making it reject it, but apparently just for you. :(

You COULD maybe skip the issue entirely by setting your non-prime value to -1 instead of +2. That would make it decide that the LBP is better than the OS, and reverse its choice there. But... where we're at, without being able to test the issue myself, working on it only for the first 30 minutes where I'm barely awake based on the information that comes in once a day? I think I've hit the limit of what I can do.
 

Magus_Prime

Well-known member
I appreciate the help. This seems to be a Jarlsberg specific issue as I've used the release versions of EatDrink both in and out of Aftercore for some time without any problems.
 

Theraze

Active member
Yeah... hopefully in another ascension or two, I'll end up with similar food problems and get to debug why this weird "no more food!" bug happens. In the meanwhile, you can just run ED again and it should finish things up properly.

Regarding the food choice, the LBP gets the same prime and 30-40 offstat, while the OS gets 40-60 offstat. So it will always be picked first, if offstat is given a positive value and both are available. Simple math.
 

fxer

Member
How do I get EatDrink to consider Wrecked Generators? I have a ton in my inventory so they don't need to be purchased. Do I have to mess with eatdrink_priceOfNontradeables? I worry that will start using a lot of stuff I don't want used. Shouldn't the output below use generators like KoL Diets recommends? Also using extra mojo filters just so I can consume a spooky wad seems terribly wrong?

Code:
Starting EatDrink.ash (version 3.1.9).
Consuming up to 12 food, 19 booze, and 15 spleen
Considering food from inventory closet Hagnk's Coinmasters NPCs the mall. Per-item budget cap is 62500.0.
Retrieval cap is 30000. Price will be a factor if you own it already.
An adventure has the value of 2000 meat. Moxie subpoint is 5.0. Nonprime stat subpoint is 1.0.
Simulating only; no purchases or food/drink/spleen consumption.
food: At 0, consuming to 12 with 60343755 meat.
0: milk of magnesium price: 899 value: 23101
0: potion of the field gar price: 9500 value: 30500
1: fishy fish lasagna lev:10 gain:3.0 adv:19.0 musc:0.0 myst:0.0 mox:50.5 meat:5000 own:0 value:11168
2: fishy fish lasagna lev:10 gain:3.0 adv:19.0 musc:0.0 myst:0.0 mox:50.5 meat:5000 own:0 value:11168
3: fishy fish lasagna lev:10 gain:3.0 adv:19.0 musc:0.0 myst:0.0 mox:50.5 meat:5000 own:0 value:11168
4: fishy fish lasagna lev:10 gain:3.0 adv:19.0 musc:0.0 myst:0.0 mox:50.5 meat:5000 own:0 value:11168
drink: At 0, consuming to 19 with 60313356 meat.
0: Ode to Booze price: 0 value: 38000
1: Gin Mint lev:2 gain:2.0 adv:11.5 musc:15.0 myst:15.0 mox:37.5 meat:7000 own:1165 value:8217
2: Gin Mint lev:2 gain:2.0 adv:11.5 musc:15.0 myst:15.0 mox:37.5 meat:7000 own:1165 value:8217
3: Gin Mint lev:2 gain:2.0 adv:11.5 musc:15.0 myst:15.0 mox:37.5 meat:7000 own:1165 value:8217
4: Gin Mint lev:2 gain:2.0 adv:11.5 musc:15.0 myst:15.0 mox:37.5 meat:7000 own:1165 value:8217
5: Gin Mint lev:2 gain:2.0 adv:11.5 musc:15.0 myst:15.0 mox:37.5 meat:7000 own:1165 value:8217
6: Gin Mint lev:2 gain:2.0 adv:11.5 musc:15.0 myst:15.0 mox:37.5 meat:7000 own:1165 value:8217
7: Gin Mint lev:2 gain:2.0 adv:11.5 musc:15.0 myst:15.0 mox:37.5 meat:7000 own:1165 value:8217
8: Gin Mint lev:2 gain:2.0 adv:11.5 musc:15.0 myst:15.0 mox:37.5 meat:7000 own:1165 value:8217
9: Gin Mint lev:2 gain:2.0 adv:11.5 musc:15.0 myst:15.0 mox:37.5 meat:7000 own:1165 value:8217
10: Go-Wassail lev:1 gain:1.0 adv:5.5 musc:5.5 myst:5.5 mox:5.5 meat:3600 own:274 value:7477
spleen: At 0, consuming to 15 with 60305924 meat.
1: coffee pixie stick lev:4 gain:4.0 adv:7.5 musc:0.0 myst:0.0 mox:0.0 meat:3000 own:0 value:3000
2: coffee pixie stick lev:4 gain:4.0 adv:7.5 musc:0.0 myst:0.0 mox:0.0 meat:3000 own:0 value:3000
X: 3 mojo filters price: 8985 (total)
spleen: At 5, consuming to 15 with 60223982 meat.
1: coffee pixie stick lev:4 gain:4.0 adv:7.5 musc:0.0 myst:0.0 mox:0.0 meat:3000 own:-3 value:3000
2: coffee pixie stick lev:4 gain:4.0 adv:7.5 musc:0.0 myst:0.0 mox:0.0 meat:3000 own:-3 value:3000
3: spooky wad lev:6 gain:1.0 adv:1.0 musc:9.0 myst:27.0 mox:18.0 meat:445 own:0 value:1807
4: spooky wad lev:6 gain:1.0 adv:1.0 musc:9.0 myst:27.0 mox:18.0 meat:445 own:0 value:1807
choc: Checking non-filling crimbo chocolates - all 3 kinds
1: chocolate stolen accordion lev:0 gain:1.0 adv:3.0 musc:0.0 myst:0.0 mox:0.0 meat:4195 own:0 value:1805
Best find was chocolate stolen accordion with a value of -195. That's no good, so not consuming and moving on.
Finished. You had Milk of Magnesium in effect. Adventures listed above does not reflect that, but this does:
Spent 107279 meat with additional expenditures of 19384 meat. Gained Fullness: 12. Inebriety: 19. Spleen: 15.
Adventures: 251. Muscle: 158. Moxie: 574. Mysticality: 194.
Eating, drinking, and spleening complete. Commence merrymaking (at your own discretion).

Also why does it use a chocolate accordion but then say it is 'no good so moving on'?
Code:
Using 1 chocolate stolen accordion...
You gain 3 Adventures
Finished using 1 chocolate stolen accordion.
1: chocolate stolen accordion lev:0 gain:1.0 adv:3.0 musc:0.0 myst:0.0 mox:0.0 meat:4195 own:0 value:305
Best find was chocolate stolen accordion with a value of -1195. That's no good, so not consuming and moving on.
 
Last edited:

Theraze

Active member
Regarding the chocolate, the first one was +305 value, a second would have been -1195. It will consume until it's no longer a good idea, then tell you why it was a bad idea and move on.

Regarding wrecked generators... As it's purchasable through coinmasters using purchasable tokens, I don't believe that it actually uses value of non-tradeable. If it does, that's a bug. I'd suggest doing something similar to what I suggested with magus trying to figure out choices...
ashq import <eatdrink.ash> update_from_mafia("drink"); update_using_mafia("drink"); foreach it in grub if (grub[it].it == $item[wrecked generator]) print_html(value(grub[it], false, false));
Believe that the per-adventure raw value at 2k should be 12k, but then the lunar isotope cost comes into it... the value print-out should tell us exactly how much they're worth. If it's something crazy-high... I'll look at the non-tradeable section. :)

Unrelated to fxer's requests and going back to magus' requests... looks like the "eat one and stop" happens anytime you have awesome food or above. Had it happen with a character eating stew. Interesting, I got better results by only taking the top suggestion and ignoring the lower ones. Looks like SOMEthing is wonky in the ingredient-world. :) But since I managed to get it happening once for me, hopefully I can get this sorted out. Possibly with some fixes to non-tradeables in the meanwhile.
 
Top