• Visit Rebornbuddy
  • [Resource] Crafting Recipe IDs and Names

    Discussion in 'Community Developer Forum' started by Cannibal, Sep 12, 2015.

    1. Cannibal

      Cannibal New Member

      Joined:
      Aug 8, 2015
      Messages:
      21
      Likes Received:
      3
      Trophy Points:
      0
      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:
       
    2. Rawrskies

      Rawrskies New Member

      Joined:
      Aug 8, 2015
      Messages:
      14
      Likes Received:
      2
      Trophy Points:
      3
      Thanks! Am working on a similar thing and this has saved me time going through and scraping the data myself!
       
    3. Jonb1982

      Jonb1982 New Member

      Joined:
      Aug 30, 2015
      Messages:
      17
      Likes Received:
      1
      Trophy Points:
      3
      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);
      }
       
    4. Rawrskies

      Rawrskies New Member

      Joined:
      Aug 8, 2015
      Messages:
      14
      Likes Received:
      2
      Trophy Points:
      3
      That won't get things I don't currently have listed or things I don't know!
       

    Share This Page