Thread: WOD/Pre-patch
View Single Post
12-06-14, 02:50 PM   #639
ircdirk
A Molten Giant
 
ircdirk's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2014
Posts: 823
Originally Posted by Rythal View Post
those coloured circles were created and drawn based on information stored in carbonites quest databases. Unfortunately the quest databases have not been updated since MoP, while I don't know for sure I suspect the original authors had a working site scrapper to build the quest info off wowhead, and since I don't it needs to be done by hand which is a lot of work and further down the road once everything else is finished.
It can be done, ill dig into quest database and see what is needed from wowhead. I can write this kind of scrapper.

Rythal can u describe some things form QuestsX-X.lua:

Code:
[24432] = {
	Quest = [[Sea Legs|1|81|80|25281|0]], <= thats all data from wowhead db
	Start = "1994|610|32|45.16|23.34", <= describe those, last 2 are NPC cords but others not from wowhead db (ok i found the first, this is key number from QuestNPC.lua Array)
	End = "1994|610|32|45.16|23.35",
	Objectives = {
	  [1] = {
		 "nil|610|35|45.5|21.5|15.03|6.68", <= describe those, 4rd and 5th are NPC cords but others not from wowhead db
		 "nil|610|35|45|22.5|20.04|3.34",
		 "nil|610|35|44.5|23|25.05|3.34",
		 "nil|610|35|43|23.5|40.08|3.34",
		 "nil|610|35|43|24|35.07|20.04",
		 "nil|610|35|43.5|27|25.05|3.34",
	   },
	  [2] = {
		 "nil|610|35|45|26.5|5.01|3.34",
	   },
	},
  },

Last edited by ircdirk : 12-06-14 at 03:19 PM.