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!

anavidfan

New Member
Joined
Dec 2, 2015
Messages
19
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