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!

Cannibal

New Member
Joined
Aug 8, 2015
Messages
21
Since I'm working on the CraftBuddy project I extracted a list of recipes for each Disciples of the Hand class from the xivdb.com Database.
The files contain the ID and the name of the recipe (sadly the recipe names are delimited by dash instead of space, which is a byproduct of my database extractor script).

Layout of the recipe text files:
[Recipe ID]: [Recipe Name]

Disciple of the Hand recipes:
 
Thanks! Am working on a similar thing and this has saved me time going through and scraping the data myself!
 
You could also use the following script in your Console to get all of the recipes:

ClearLog();
foreach(var recipe in CraftingManager.CurrentlyListedRecipes)
{
Log("RecipeId:{0} Name:{1}",recipe.RecipeId,recipe.CurrentLocaleName);
}
 
Back
Top