What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

[GourmetGuy V2] Use food with RebornBuddy

Status
Not open for further replies.

Wheredidigo

Community Developer
Joined
Dec 15, 2013
Messages
417
I'm tired of Mastahg saying everything anyone else does is bad. I've removed my stuff from the forums and will be posting them elsewhere online.
 
Last edited:
Thank you for this re-write Where. I'll put it to good use on teh alts. :D

EDIT: Couple of issues:
  1. It allows and accepts non-food items to be selected as valid edibles (Looks like seafood is the culprit.)
  2. It is not unhooking either when the plugin is de-selected (unchecked in the plugin menu) or when the bot is stopped via the Stop button.

I have included a log file, edited out my combat crap from the 8 hours previous (50K lines, heh). Info is at the bottom of it :p
 

Attachments

Last edited:
Yes but the plugin didn't pick it up. I was using Buffalo Milk. I had to type it in myself.
 
Not working for me.

Please make sure you completely delete any previous versions of GourmetGuy you may have had installed. Your problem was because it tried to use an old settings file where the food that you had saved did not have a "(" in the name. I am manually adding "(HQ True/False)" to every food name that comes from the Settings Window, so if you are selecting an item from there, it should always have a "(" in it. I have updated the plugin so it shouldn't throw that error anymore though. Thank you for posting a log.

Thank you for this re-write Where. I'll put it to good use on teh alts. :D
EDIT: Couple of issues:
  1. It allows and accepts non-food items to be selected as valid edibles (Looks like seafood is the culprit.)
  2. It is not unhooking either when the plugin is de-selected (unchecked in the plugin menu) or when the bot is stopped via the Stop button.

I have included a log file, edited out my combat crap from the 8 hours previous (50K lines, heh). Info is at the bottom of it :p

I've updated the plugin so that Seafood no longer shows up as a selectable item. I've also fixed the unhooking issue so it will properly unhook when the plugin is disabled. Thank you for posting a log.
 
Yes but the plugin didn't pick it up. I was using Buffalo Milk. I had to type it in myself.

Definitely need to make sure to delete any previous versions of GourmetGuy as you should not be able to type in what food you are looking for. When you click on the Settings button, you should only have a drop down list of items and you shouldn't be able to type in what item to use.
 
Definitely need to make sure to delete any previous versions of GourmetGuy as you should not be able to type in what food you are looking for. When you click on the Settings button, you should only have a drop down list of items and you shouldn't be able to type in what item to use.

I did delete the entire old plugin folder. But I did make a new plugin folder with the same name. Could that have been the issue?
 
I did delete the entire old plugin folder. But I did make a new plugin folder with the same name. Could that have been the issue?
The issue that caused the exception was that you didn't have a "(" in the name of the food you wanted. You also shouldn't be able to type in a name at all which is what led me to believe you still had the old version installed. Have you tried the latest version I updated to? Does it work for you now?
 
I did delete the entire old plugin folder. But I did make a new plugin folder with the same name. Could that have been the issue?
Delete your setting file too it's in Reborn Buddy\Settings\ your char name
remember delete every Old GourmetGuy setting file
 
I deleted everything and reinstalled. It still wont recognize the Bufffalo Milk. I'm also still able to type in the drop down box. Unchecking the plugin doesn't seem to stop it either.
 

Attachments

Last edited:
I deleted everything and reinstalled. It still wont recognize the Bufffalo Milk. I'm also still able to type in the drop down box. Unchecking the plugin doesn't seem to stop it either.
Have you tried a fresh RB install with the only plugin being GourmetGuy? Meaning, a clean RB install that's never been used before, not just deleting all the specific GourmetGuy files.

If you haven't tried this yet, make a new RB folder (feel free to keep the old one in case this doesn't work), then add the GourmetGuy plugin and run RB. Include a log if it's not working after that.
 
Plugin is working fine for me.

While i dont try to type the name of the food in (just use the drop down box), we are still able to type into that drop box and save whatever jibberish we type into it.
 
I deleted everything and reinstalled. It still wont recognize the Bufffalo Milk. I'm also still able to type in the drop down box. Unchecking the plugin doesn't seem to stop it either.

Can you please run the following code in the RebornConsole and then paste back the results you get.

Code:
foreach (var item in ff14bot.Managers.InventoryManager.FilledSlots.Where(
                    x =>
                        x.BagId == InventoryBagId.Bag1 || x.BagId == InventoryBagId.Bag2 ||
                        x.BagId == InventoryBagId.Bag3 || x.BagId == InventoryBagId.Bag4))
            {
                Log("Name: " + item.Item.EnglishName + "\tItemCategory: " + item.Item.EquipmentCatagory);
            }
 
Can you please run the following code in the RebornConsole and then paste back the results you get.

Code:
foreach (var item in ff14bot.Managers.InventoryManager.FilledSlots.Where(
                    x =>
                        x.BagId == InventoryBagId.Bag1 || x.BagId == InventoryBagId.Bag2 ||
                        x.BagId == InventoryBagId.Bag3 || x.BagId == InventoryBagId.Bag4))
            {
                Log("Name: " + item.Item.EnglishName + "\tItemCategory: " + item.Item.EquipmentCatagory);
            }
I assume this was the line you needed with that snippet?

Code:
Name: Buffalo Milk	ItemCategory: Ingredient
 
Last edited:
Not home atm but that may be the problem. It's a cheap food but it's labeled as an ingredient. Because it is used for both.
 
Not home atm but that may be the problem. It's a cheap food but it's labeled as an ingredient. Because it is used for both.
Yes, that is definitely the problem. I'm currently only looking for things with a category of Meal.

When the game comes back up, can you still please run the following code snippet in the RebornConsole. I'd like to see all of the results and not just the one for Buffalo's Milk so I have some context to match it against. It would be perfect if you could make sure to have another Ingredient Item in your back that you can't use as food.

Code:
foreach (var item in ff14bot.Managers.InventoryManager.FilledSlots.Where(x => x.BagId == InventoryBagId.Bag1 || x.BagId == InventoryBagId.Bag2 || x.BagId == InventoryBagId.Bag3 || x.BagId == InventoryBagId.Bag4))
{
	Log("Name: " + item.Item.EnglishName + "\tItemCategory: " + item.Item.EquipmentCatagory + "\tActionType: " + item.ActionType + "\tCanUse: " + item.CanUse());
}
 
Yes, that is definitely the problem. I'm currently only looking for things with a category of Meal.

When the game comes back up, can you still please run the following code snippet in the RebornConsole. I'd like to see all of the results and not just the one for Buffalo's Milk so I have some context to match it against. It would be perfect if you could make sure to have another Ingredient Item in your back that you can't use as food.

Code:
foreach (var item in ff14bot.Managers.InventoryManager.FilledSlots.Where(x => x.BagId == InventoryBagId.Bag1 || x.BagId == InventoryBagId.Bag2 || x.BagId == InventoryBagId.Bag3 || x.BagId == InventoryBagId.Bag4))
{
	Log("Name: " + item.Item.EnglishName + "\tItemCategory: " + item.Item.EquipmentCatagory + "\tActionType: " + item.ActionType + "\tCanUse: " + item.CanUse());
}

here is everything you want.

Code:
Name: Prickly Pineapple	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Seema	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Dzemael Tomato	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Assassin Betta	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Bone Crayfish	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Maple Syrup	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Chub	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Black Truffle	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Apricot	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Mole Meat	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Night Milk	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Ala Mhigan Fighting Fish	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Buffalo Sirloin	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Night Milk	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Night Milk	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Ala Mhigan Fighting Fish	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Malm Kelp	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Honey Lemon	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Sweet Cream	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Merlthor Goby	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Seema	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Rainbow Trout	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Bone Crayfish	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Silverfish	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Boltfish	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Antelope Shank	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Moat Carp	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Assassin Betta	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Wahoo	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Smooth Butter	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Prickly Pineapple	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Nutmeg	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Honey	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Thanalan Tea Leaves	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Gelatin	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Laurel	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Gelatin	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Thanalan Tea Leaves	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Midland Basil	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Dzemael Tomato	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Dark Sleeper	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Mugwort	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Kissing Trout	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Chicken Stock	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Marjoram	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Kukuru Butter	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Crimson Trout	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Kukuru Powder	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Gridanian Walnut	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Lavender Oil	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Almonds	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Cider Vinegar	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Maple Sugar	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Night Milk	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Maple Syrup	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Clove Oil	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Apkallu Egg	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Honey Lemon	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Sun Lemon	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Lowland Grapes	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Black Truffle	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Harbor Herring	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Crimson Trout	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Rainbow Trout	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Gudgeon	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Sea Cucumber	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Rolanberry	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Rolanberry	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Prickly Pineapple	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Prickly Pineapple	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Prickly Pineapple	ItemCategory: Ingredient	ActionType: Item	CanUse: True
 
here is everything you want.

Code:
Name: Prickly Pineapple	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Seema	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Dzemael Tomato	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Assassin Betta	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Bone Crayfish	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Maple Syrup	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Chub	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Black Truffle	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Apricot	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Mole Meat	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Night Milk	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Ala Mhigan Fighting Fish	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Buffalo Sirloin	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Night Milk	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Night Milk	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Ala Mhigan Fighting Fish	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Malm Kelp	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Honey Lemon	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Sweet Cream	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Merlthor Goby	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Seema	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Rainbow Trout	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Bone Crayfish	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Silverfish	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Boltfish	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Antelope Shank	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Moat Carp	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Assassin Betta	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Wahoo	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Smooth Butter	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Prickly Pineapple	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Nutmeg	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Honey	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Thanalan Tea Leaves	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Gelatin	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Laurel	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Gelatin	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Thanalan Tea Leaves	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Midland Basil	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Dzemael Tomato	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Dark Sleeper	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Mugwort	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Kissing Trout	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Chicken Stock	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Marjoram	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Kukuru Butter	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Crimson Trout	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Kukuru Powder	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Gridanian Walnut	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Lavender Oil	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Almonds	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Cider Vinegar	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Maple Sugar	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Night Milk	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Maple Syrup	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Clove Oil	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Apkallu Egg	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Honey Lemon	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Sun Lemon	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Lowland Grapes	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Black Truffle	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Harbor Herring	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Crimson Trout	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Rainbow Trout	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Gudgeon	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Sea Cucumber	ItemCategory: Seafood	ActionType: Item	CanUse: True
Name: Rolanberry	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Rolanberry	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Prickly Pineapple	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Prickly Pineapple	ItemCategory: Ingredient	ActionType: Item	CanUse: True
Name: Prickly Pineapple	ItemCategory: Ingredient	ActionType: Item	CanUse: True

Yes, Thank You!!!!
 
Status
Not open for further replies.
Back
Top