vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 -- mapID, BCContinent, BCZone, VanillaC, VanillaZ
2 QuestieZones = {
3 ["WorldMap"] = {1337, 1337, 0, 0}, --
4 ["Azeroth"] = {-1, -1, -1, 2, 0}, --
5 ["Kalimdor"] = {-1, -1, -1, 1, 0}, --
6 ["Hinterlands"] = {42, 2, 24, 2, 20}, -- -- I found the code questhelper used, didnt do enough searching D:
7 ["Moonglade"] = {20, 1, 12, 1, 10}, --
8 ["ThousandNeedles"] = {14, 1, 21, 1, 18}, --
9 ["Winterspring"] = {19, 1, 24, 1, 21}, --
10 --["BloodmystIsle"] = {9, 1, 4, -1, -1},--
11 --["TerokkarForest"] = {55, 3, 7, -1, -1},--
12 ["Arathi"] = {39, 2, 2, 2, 2},--
13 --["EversongWoods"] = {41, 2, 11, -1, -1}, --
14 ["Dustwallow"] = {10, 1, 9, 1, 7},--
15 ["Badlands"] = {27, 2, 3, 2, 3}, --
16 ["Darkshore"] = {16, 1, 5, 1, 3},--
17 ["Ogrimmar"] = {1, 1, 14, 1, 12},--
18 --["BladesEdgeMountains"] = {54, 3, 1, -1, -1},
19 ["Undercity"] = {45, 2, 26, 2, 22},
20 ["Desolace"] = {4, 1, 7, 1, 5},
21 --["Netherstorm"] = {59, 3, 4, -1, -1},
22 ["Barrens"] = {11, 1, 19, 1, 17},
23 ["Tanaris"] = {8, 1, 17, 1, 15},
24 ["Stormwind"] = {36, 2, 21, 2, 17},--
25 --["Zangarmarsh"] = {57, 3, 8, -1, -1},
26 ["Durotar"] = {7, 1, 8, 1, 6},--
27 --["Hellfire"] = {56, 3, 2, -1, -1},
28 ["Silithus"] = {5, 1, 15, 1, 13},
29 --["ShattrathCity"] = {60, 3, 6, -1, -1},
30 --["ShadowmoonValley"] = {53, 3, 5, -1, -1},
31 ["SwampOfSorrows"] = {46, 2, 23, 2, 19},
32 --["SilvermoonCity"] = {52, 2, 19, -1, -1},
33 ["Darnassis"] = {21, 1, 6, 1, 4},
34 --["AzuremystIsle"] = {3, 1, 3, -1, -1},
35 ["Elwynn"] = {37, 2, 10, 2, 10},--
36 ["Stranglethorn"] = {38, 2, 22, 2, 18},
37 ["EasternPlaguelands"] = {34, 2, 9, 2, 9},
38 ["Duskwood"] = {31, 2, 8, 2, 8},
39 ["WesternPlaguelands"] = {50, 2, 27, 2, 23},
40 ["Westfall"] = {49, 2, 28, 2, 24},
41 ["Ashenvale"] = {2, 1, 1, 1, 1},
42 ["Teldrassil"] = {24, 1, 18, 1, 16},
43 ["Redridge"] = {30, 2, 17, 2, 14},
44 ["UngoroCrater"] = {18, 1, 23, 1, 20},
45 ["Mulgore"] = {22, 1, 13, 1, 11},
46 ["Ironforge"] = {25, 2, 14, 2, 12},
47 ["Felwood"] = {13, 1, 10, 1, 8},
48 ["Hilsbrad"] = {48, 2, 13, 2, 11},
49 ["DeadwindPass"] = {47, 2, 6, 2, 6},
50 ["BurningSteppes"] = {40, 2, 5, 2, 5},
51 --["Ghostlands"] = {44, 2, 12, -1, -1},
52 ["Tirisfal"] = {43, 2, 25, 2, 21},
53 --["TheExodar"] = {12, 1, 20, -1, -1},
54 ["Wetlands"] = {51, 2, 29, 2, 25},
55 ["SearingGorge"] = {32, 2, 18, 2, 15},
56 ["BlastedLands"] = {33, 2, 4, 2, 4},
57 ["Silverpine"] = {35, 2, 20, 2, 16},
58 ["LochModan"] = {29, 2, 16, 2, 13},
59 ["Feralas"] = {17, 1, 11, 1, 9},
60 ["DunMorogh"] = {28, 2, 7, 2, 7},
61 ["Alterac"] = {26, 2, 1, 2, 1},
62 ["ThunderBluff"] = {23, 1, 22, 1, 19},
63 ["Aszhara"] = {15, 1, 2, 1, 2},
64 ["StonetalonMountains"] = {6, 1, 16, 1, 14},
65 --["Nagrand"] = {58, 3, 3, -1, -1},
66 ["Kalimdor"] = {61, 1, 0, 1, 0},
67 ["Azeroth"] = {62, 2, 0, 2, 0},
68 --["Expansion01"] = {63, 3, 0, -1, -1},
69 --["Sunwell"] = {64, 2, 15, -1, -1} -- code copied from questhelper (this is actually the only code that was directly copied, the database was put through JavaRefactorProject
70 }
71 QuestieZoneIDLookup = {};
72 for k,v in pairs(QuestieZones) do
73 -- must be non-linear array
74 QuestieZoneIDLookup[v[1]] = v;
75 end
76 QuestieCZLookup = {};
77 for k,v in pairs(QuestieZones) do
78 QuestieCZLookup[v[2] * 100 + v[3]] = v[1];
79 end