ok, so just so I'm clear - you want to EAT merchant's fast and Merchant's brew? This sounds like a waste of plat, but its your plat =p
How I have mine setup is I have my Best food in bag 1 top slots - I never want these consumed as they are expensive, but because they are in the top slots I get the stat benefit from them
View attachment 16342
The code is using these two items
View attachment 16344
It is looking in my invetory to see if I have less than 5 Warm Milk (which comes from the warm milk dispenser - if I don't have 5 or more, and I am not invis, and I am not in combat, it will use the warm milk dispenser until I have 6 Warm Milk --- same for the Fresh Cookie Dispenser and Fresh Cookie
If you are not using a food summon item you can just use these two to consume your "trash food"
This code is saying - If my hunger level is lower than 4500 (i believe 6000 is the max "full" value) AND I have more than 1 Merchant's Feast then eat a Merchant's feast etc.
Code:
downflag0=1
downflag1=1
downshit0=/if (${Me.Hunger}<4500 && ${FindItemCount[=Merchant's Feast]}>0) /useitem "Merchant's Feast"
downshit1=/if (${Me.Thirst}<4500 && ${FindItemCount[=Merchant's Brew]}>0) /useitem "Merchant's Brew"
If you are trying to USE the merchant's feast for stats, you would want to get some junk food to eat to stay full while keeping the merchant stuff in your top most container slots (above other food).
These, for example, are vendor bought and stack to 1000 so you could fill a bag with these for junk food
View attachment 16345
Code:
downflag0=1
downflag1=1
downshit0=/if (${Me.Hunger}<4500 && ${FindItemCount[=Bottle of Milk]}>0) /useitem "Bottle of Milk"
downshit1=/if (${Me.Thirst}<4500 && ${FindItemCount[=Fresh Fish]}>0) /useitem "Fresh Fish"