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!

Help with recipe id

overlord2000

Member
Joined
Apr 17, 2016
Messages
47
I need to find recipes ids, please someone help me with this, for example, the recipes id of the items below I do not think, but I find the item number, how to convert or find?

1:Ruby Cotton Cloth

Recipe ID=?

Item ID= 19977

2: Ruby Cotton Yarn

Recipe ID=?

Item ID= 19978

I already tried to inspect the traffic on the network and nothing, just find the items, and if they put them, the bot finds the item, but informs that it does not know the id recipe, so he can not craft. :(
 
Code:
foreach(var recipe in CraftingManager.CurrentlyListedRecipes)
{
Log(recipe.DynamicString());
}
running this in the console will print out the information for the recipes currently shown in the crafting log
 
Code:
foreach(var recipe in CraftingManager.CurrentlyListedRecipes)
{
Log(recipe.DynamicString());
}
running this in the console will print out the information for the recipes currently shown in the crafting log


Hello,

Thanks a lot for responding, I'm desperate, in case, I'm using the command on the reborn console bot right? the code was executed, however, in which folder do I check the output information?

The reborn console is plugins, I ran, and also while I was crafting the item that needed the result, do I need to insert anything else? Could you help me finish this please?

Thank you again.
 
Code:
foreach(var recipe in CraftingManager.CurrentlyListedRecipes)
{
Log(recipe.DynamicString());
}
running this in the console will print out the information for the recipes currently shown in the crafting log

I got it here thank you very much, I renewed the key again, I am in another email now that I have seen, if need be, I can update all the recipes for the craftplugin, but as I have seen, it is very simple indeed.

Thank you again :p:p:p:p:):):):):):)
 
Back
Top