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

Cannibal

New Member
Joined
Aug 8, 2015
Messages
21
Reaction score
3
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);
}
 
That won't get things I don't currently have listed or things I don't know!
 
Back
Top