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

anavidfan

New Member
Joined
Dec 2, 2015
Messages
19
Reaction score
1
Hi Devs,

You guys do some awesome stuff. Not sure if this helps, but I put this together as I'm semi-optimistic it could lead to a profile that both gathers and crafts red scrip crafter items. The crafting logic is around, but I haven't seen Crafting+Gathering merged. I saw elsewhere compiling data is a tedious part for devs so I thought i'd contribute since I can do that...

Shoutout to any savvy web folks who can run a script that could take a list of...

ItemID1,ItemID2,ItemID3 go to http://xivdb.com/item/ItemID1and looks for #### here in the HTML ...<a href="/recipe/####/Birch+Lumber" class="xivdb-tooltip-recipe####">Recipe Page</a>

I could turn these from ItemIDs into RecipeIDs pretty quickly. Anywhere here's a data dump that may or may not be useful...

Data is from GarlandTools. Let me know if you find any errors...

Cannot post a lot of data so here's a pastebin... http://pastebin.com/ZMh1b2Mf
 
foreach(var recipe in CraftingManager.CurrentlyListedRecipes)
{
Log("RecipeId:{0} Name:{1}",recipe.RecipeId,recipe.CurrentLocaleName);
}
 
Back
Top