From 9ed2375b64fb075784cf41918209e2684628fd7b Mon Sep 17 00:00:00 2001 From: Ackis Date: Fri, 12 Dec 2008 23:02:07 +0000 Subject: [PATCH] Fix missing quest for LW --- ARLDataminer.rb | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/ARLDataminer.rb b/ARLDataminer.rb index bd3adb4..286bc46 100644 --- a/ARLDataminer.rb +++ b/ARLDataminer.rb @@ -313,6 +313,8 @@ def parse_npc_data(npc,details,typenpc,acquirelisting,flaglisting,npcreact,npcfa end # Does not have location information and is not mapped manually else + $unknownzone << {:name => npc[:name], + :loc => "Unknown"} $unknownfaction << {:name => npc[:name], :react => "Unknown", :loc => "Unknown"} @@ -423,6 +425,9 @@ def parse_quest_data(quest,acquirelisting,flaglisting,npcfactions,maps) flags << flaglisting["Raid"] end end + else + $unknownzone << {:name => quest[:name], + :loc => "Unknown"} end end @@ -861,12 +866,12 @@ EOF "id" => 2478} acquire << {"type" => acquirelisting["Vendor"], "id" => 6779} - $quests[2359] = {:name => "Klaven's Tower"} - $quests[2359][:faction] = npcfactions["Alliance"] - $quests[2478] = {:name => "Mission: Possible But Not Probable"} - $quests[2478][:faction] = npcfactions["Horde"] - $vendors[6779] = {:name => "Smudge Thunderwood"} - $vendors[6779][:faction] = npcfactions["Neutral"] + $quests[2359] = {:name => "Klaven's Tower" + :faction => npcfactions["Alliance"]} + $quests[2478] = {:name => "Mission: Possible But Not Probable" + :faction => npcfactions["Horde"]} + $vendors[6779] = {:name => "Smudge Thunderwood" + :faction => npcfactions["Neutral"]} when "Onyxia" flags.delete(flaglisting["Trainer"]) flags.delete(flaglisting["Vendor"]) @@ -874,6 +879,10 @@ EOF flags.delete(flaglisting["Raid"]) flags.delete(flaglisting["Quest"]) flags << flaglisting["Alliance"] << flaglisting["Horde"] << flaglisting["Quest"] << flaglisting["Raid"] + $quests[7493] = {:name => "The Journey Has Just Begun" + :faction => npcfactions["Horde"]} + $quests[7497] = {:name => "The Journey Has Just Begun"} + :faction => npcfactions["Alliance"]} acquire << {"type" => acquirelisting["Quest"], "id" => 7493} acquire << {"type" => acquirelisting["Quest"], @@ -3266,7 +3275,7 @@ else alchmanual=< "Badlands Reagent Run II"} $quests[2203][:faction] = 2 $quests[2501] = {:name => "Badlands Reagent Run II"} -- 1.7.9.5