View Single Post
  #3  
Unread 11-18-2010, 03:58 AM
Chiran Chiran is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: Sep 2010
Posts: 27
Red face

Quite possible if someone would convert all the recipe lists. They should be in Lua script format though for the plugin to read. Something like:

Code:
return
{
	["Cooking"] =
	{
		["Tier1"] =
		{
			["Recipe1"] =
			{
				["Name"] = "Recipe name",
				["SingleUse"] = false
			},
			["Recipe2"] =
			{
				["Name"] = "Recipe name 2",
				["SingleUse"] = true
			}
		}
	}
}
Depending of course what suits the end purpose and how elaborate you need/want to be.

-Chiran
Reply With Quote