-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAlliance.lua
504 lines (403 loc) · 11.5 KB
/
Alliance.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
if UnitFactionGroup("player") ~= "Alliance" then return end
local _, HallowsEnd = ...
local points = HallowsEnd.points
-- points[<mapfile>] = { [<coordinates>] = <quest ID> }
----------------------
-- Eastern Kingdoms --
----------------------
points[14] = { -- "Arathi"
[40094914] = 28954, -- Refuge Pointe
}
points[15] = { -- "Badlands"
[65863565] = 28955, -- Fuselight
[20875632] = 28956, -- Dragon's Mouth
}
points[17] = { -- "BlastedLands"
[60691407] = 28960, -- Nethergarde Keep
[44348759] = 28961, -- Surwich
}
points[27] = { -- "DunMorogh"
[54485076] = 12332, -- Kharanos
[61202744] = 12335, -- The Commons, Ironforge
}
points[47] = { -- "Duskwood"
[73804425] = 12344, -- Darkshire
}
points[23] = { -- "EasternPlaguelands"
[75575230] = 12402, -- Light's Hope Chapel
}
points[37] = { -- "Elwynn"
[43746590] = 12286, -- Goldshire
[24894013] = 12336, -- Trade District, Stormwind City
}
points[26] = { -- "Hinterlands"
[14194460] = 12351, -- Aerie Peak
[66164443] = 28970, -- Stormfeather Outpost
}
points[87] = { -- "Ironforge"
[18505083] = 12335, -- The Commons
}
points[48] = { -- "LochModan"
[35544850] = 12339, -- Thelsamar
[83036353] = 28963, -- Farstrider Lodge
}
points[49] = { -- "Redridge"
[26484156] = 12342, -- Lakeshire
}
points[32] = { -- "SearingGorge"
[39486603] = 28965, -- Iron Summit
}
points[84] = { -- "StormwindCity"
[60517532] = 12336, -- Trade District
}
points[50] = { -- "StranglethornJungle"
[53166698] = 28964, -- Fort Livingston
}
points[51] = { -- "SwampOfSorrows"
[71651410] = 28967, -- Bogpaddle
[28933240] = 28968, -- The Harbourage
}
points[210] = { -- "TheCapeOfStranglethorn"
[40917372] = 12397, -- Booty Bay
}
points[22] = { -- "WesternPlaguelands"
[43418439] = 28988, -- Chillwind Camp
}
points[52] = { -- Westfall
[52915374] = 12340, -- Sentinel Hill
}
points[56] = { -- "Wetlands"
[10816095] = 12343, -- Menethil Harbour
[26092597] = 28990, -- Swiftgear Station
[58183921] = 28991, -- Greenwarden's Grove
}
--------------
-- Kalimdor --
--------------
points[63] = { -- "Ashenvale"
[37014926] = 12345, -- Astranaar
}
points[97] = { -- "AzuremystIsle"
[48494905] = 12333, -- Azure Watch
[29293485] = 12337, -- Seat of the Naaru, The Exodar
}
points[10] = { -- "Barrens"
[67347466] = 12396, -- Ratchet
}
points[106] = { -- "BloodmystIsle"
[55695997] = 12341, -- Blood Watch
}
points[62] = { -- "Darkshore"
[50801890] = 28951, -- Lor'danel
}
points[89] = { -- "Darnassus"
[62273316] = 12334, -- Craftsman's Terrace
}
points[66] = { -- "Desolace"
[66330659] = 12348, -- Nijel's Point
[56725012] = 28993, -- Karnum's Glade
}
points[70] = { -- "Dustwallow"
[66604528] = 12349, -- Theramore Isle
[41867409] = 12398, -- Mudsprocket
}
points[77] = { -- "Felwood"
[44582898] = 28994, -- Whisperwind Grove
[61862671] = 28995, -- Talonbranch Glade
}
points[69] = { -- "Feralas"
[46334519] = 12350, -- Feathermoon Stronghold
[51071782] = 28952, -- Dreamer's Rest
}
points[81] = { -- "Silithus"
[55473679] = 12401, -- Cenarion Hold
}
points[199] = { -- "SouthernBarrens"
[39011098] = 29006, -- Honour's Stand
[65604654] = 29007, -- Northwatch Hold
[49056850] = 29008, -- Fort Triumph
}
points[65] = { -- "StonetalonMountains"
[40531769] = 12347, -- Stonetalon Peak
[71027908] = 29010, -- Northwatch Expedition Base Camp
[59055633] = 29011, -- Windshear Hold
[39483281] = 29012, -- Thal'darah Overlook
[31536066] = 29013, -- Farwatcher's Glen
}
points[71] = { -- "Tanaris"
[52562710] = 12399, -- Gadgetzan
[55706096] = 29014, -- Bootlegger Outpost
}
points[103] = { -- "TheExodar"
[59251847] = 12337, -- Seat of the Naaru
}
points[57] = { -- "Teldrassil"
[55365229] = 12331, -- Dolanaar
[34164401] = 12334, -- Craftsman's Terrace, Darnassus
}
points[78] = { -- "UngoroCrater"
[55276212] = 29018, -- Marshal's Stand
}
points[83] = { -- "Winterspring"
[59835122] = 12400, -- Everlook
}
-------------
-- Outland --
-------------
points[105] = { -- "BladesEdgeMountains"
[62903830] = 12406, -- Evergrove
[35806380] = 12358, -- Sylvanaar
[61006810] = 12359, -- Toshley's Station
}
points[100] = { -- "Hellfire"
[54306360] = 12352, -- Honour Hold
[23403650] = 12353, -- Temple of Telhamat
}
points[107] = { -- "Nagrand"
[54207580] = 12357, -- Telaar
}
points[109] = { -- "Netherstorm"
[32006440] = 12407, -- Area 52
[43403610] = 12408, -- The Stormspire
}
points[104] = { -- "ShadowmoonValley"
[37105820] = 12360, -- Wildhammer Stronghold
}
points[111] = { -- "ShattrathCity"
}
points[108] = { -- "TerokkarForest"
[56605320] = 12356, -- Allerian Stronghold
}
points[102] = { -- "Zangarmarsh"
[67204900] = 12354, -- Telredor
[41902620] = 12355, -- Orebor Harbourage
[78506290] = 12403, -- Cenarion Refuge
}
---------------
-- Northrend --
---------------
points[114] = { -- "BoreanTundra"
[58506790] = 13436, -- Valliance Keep
[57101880] = 13437, -- Fizzcrank Airstrip
[78404920] = 13460, -- Unu'pe
}
points[127] = { -- "CrystalsongForest"
[29053658] = 13463, -- The Ledgerdemain Lounge, Dalaran
[27294136] = 13472, -- The Underbelly, Dalaran
[27284323] = 13473, -- The Silver Enclave, Dalaran
}
points[125] = { -- "Dalaran"
[48144132] = 13463, -- The Ledgerdemain Lounge
[42305680] = 13472, -- The Underbelly
[42346308] = 13473, -- The Silver Enclave
}
points[126] = { -- "DalaranUnderbelly"
[38225959] = 13472, -- The Underbelly
}
points[115] = { -- "Dragonblight"
[29005620] = 13438, -- Stars' Rest
[77505130] = 13439, -- Wintergarde Keep
[60105350] = 13456, -- Wyrmrest Temple
[48207470] = 13459, -- Moa'ki Harbour
}
points[116] = { -- "GrizzlyHills"
[32006020] = 12944, -- Amberpine Lodge
[59602640] = 12945, -- Westfall Brigade
}
points[117] = { -- "HowlingFjord"
[58406280] = 13433, -- Valgarde
[30804150] = 13434, -- Westguard Keep
[60501590] = 13435, -- Fort Wildevar
[25405980] = 13452, -- Kamagua
}
points[119] = { -- "SholazarBasin"
[26705920] = 12950, -- Nesingwary Base Camp
}
points[120] = { -- "TheStormPeaks"
[28707430] = 13448, -- Frosthold
[41108590] = 13461, -- K3
[30903720] = 13462, -- Bouldercrag's Refuge
}
points[121] = { -- "ZulDrak"
[59305720] = 12940, -- Zim'Torga
[40806600] = 12941, -- The Argent Stand
}
---------------
-- Cataclysm --
---------------
points[207] = { -- "Deepholm"
[47365171] = 29020, -- Temple of Earth
}
points[198] = { -- "Hyjal"
[63052415] = 28999, -- Nordrassil
[18623732] = 29000, -- Grove of Aessina
[42684571] = 29001, -- Shrine of Aviana
}
points[241] = { -- "TwilightHighlands"
[60355825] = 28977, -- Firebeard's Patrol
[79487855] = 28980, -- Highbank
[49583036] = 28978, -- Thundermar
[43505727] = 28979, -- Victor's Point
}
points[249] = { -- "Uldum"
[26580724] = 29016, -- Oasis of Vir'sar
[54683301] = 29017, -- Ramkahen
}
points[204] = { -- "VashjirDepths"
[54677212] = 28985, -- Darkbreak Cove
}
points[201] = { -- "VashjirKelpForest"
[63506017] = 28981, -- Deepmist Grotto
}
points[205] = { -- "VashjirRuins"
[49174188] = 28982, -- Silver Tide Hollow
[49725739] = 28983, -- Tranquil Wash
}
--------------
-- Pandaria --
--------------
points[422] = { -- "DreadWastes"
[55217117] = 32023, -- Soggy's Gamble
[55913228] = 32024, -- Klaxxi'vess
}
points[418] = { -- "Krasarang"
[51407729] = 32034, -- Marista's Bait & Brew
[75900687] = 32036, -- Zhu's Watch
}
points[379] = { -- "KunLaiSummit"
[72719226] = 32039, -- Binan Village
[64226125] = 32041, -- The Grummle Bazaar
[57475994] = 32037, -- One Keg
[54078278] = 32042, -- Westwind Rest
[62482892] = 32051, -- Zouchin Village
}
points[393] = { -- "ShrineofSevenStars"
[37866593] = 32052, -- Shrine of Seven Stars, Vale of Eternal Blossoms
}
points[433] = { -- "TheHiddenPass"
[55037224] = 32026, -- Tavern in the Mists
}
points[371] = { -- "TheJadeForest"
[45784360] = 32027, -- Dawn's Blossom
[48083464] = 32029, -- Greenstone Village
[54626335] = 32032, -- Jade Temple Grounds
[44808439] = 32049, -- Paw'don Village
[59558322] = 32033, -- Pearlfin Village
[55732440] = 32031, -- Sri-La Village
[41672316] = 32021, -- Tian Monastery
}
points[388] = { -- "TownlongWastes"
[71135780] = 32043, -- Longying Outpost
}
points[390] = { -- "ValeofEternalBlossoms"
[35137777] = 32044, -- Mistfall Village
[87036889] = 32052, -- Shrine of Seven Stars
}
points[376] = { -- "ValleyoftheFourWinds"
[83642019] = 32048, -- Pang's Stead
[19885582] = 32046, -- Stoneplow
}
-------------
-- Draenor --
-------------
points[582] = { -- "garrisonsmvalliance_tier3"
[43765159] = 39657, -- Lunarfall Garrison
}
points[539] = { -- "ShadowmoonValleyDR"
[30181800] = 39657, -- Lunarfall Garrison
}
------------------
-- Broken Isles --
------------------
points[627] = { -- "Dalaran70"
[47954177] = 43055, -- The Ledgerdemain Lounge
[41486398] = 43056, -- Greyfang Enclave
}
------------------
-- Dragon Isles --
------------------
points[2023] = { -- "Ohn'ahran Plains"
[46224060] = 75684, -- Broadhoof Outpost
[66242453] = 75693, -- Emberwatch
[72148039] = 75692, -- Forkriver Crossing
[62934057] = 75685, -- Maruukai
[57147672] = 75687, -- Ohn'iri Springs
[81295920] = 75688, -- Pinewood Post
[85853536] = 75689, -- Rusza'thar Reach
[28646057] = 75686, -- Shady Sanctuary (Greenscale Inn)
[41916043] = 75691, -- Teerakai
[85042603] = 75690, -- Timberstep Outpost
}
points[2025] = { -- "Thaldraszus"
[50084273] = 75698, -- Algeth'era Court (The Late Night Lab)
[35087921] = 75696, -- Garden Shrine
[52406981] = 75697, -- Gelikyr Post
[59858269] = 75695, -- Temporal Conflux
}
points[2024] = { -- "The Azure Span"
[47034026] = 75667, -- Camp Antonidas (Mage's Rest)
[62785773] = 75668, -- Camp Nowhere (Mulsted's Marquee)
[12394935] = 75669, -- Iskaara
[65501625] = 75670, -- Theron's Watch
[18812455] = 75671, -- Three-Falls Lookout (The Missing Hinge Inn)
}
points[2151] = { -- "The Forbidden Reach"
[33835880] = 75702, -- Morqut Village
}
points[2022] = { -- "The Waking Shores"
[24468210] = 75672, -- Apex Observatory
[47678330] = 75673, -- Dragonscale Basecamp
[65225793] = 75675, -- Life Vault Ruins
[43116666] = 77698, -- Obsidian Bulwark
[25775518] = 75676, -- Obsidian Throne
[58036731] = 75674, -- Ruby Lifeshine
[76075475] = 75677, -- Skytop Observatory
[53913904] = 75678, -- Uktulut Backwater
[46442741] = 75679, -- Uktulut Pier
[76213541] = 75683, -- Wingrest Embassy
[81303200] = 75681, -- Wild Coast (Alliance)
}
points[2112] = { -- "Valdraaken"
[72374669] = 75700, -- The Parting Glass
[47134540] = 75699, -- The Roasted Ram
[22353086] = 75701, -- Weyrnrest
}
points[2133] = { -- "Zaralek Cavern"
[56375635] = 75704, -- Loamm
[52122647] = 75703, -- Obsidian Rest
}
----------------
-- Khaz Algar --
----------------
points[2248] = { -- "Isle of Dorn"
[58172711] = 84567, -- Rambleshire
[41997437] = 84566, -- Freywold Village
}
points[2339] = { -- "Dornogal"
[45014731] = 84564, -- Dornogal
}
points[2214] = { -- "The Ringing Depths"
[47893209] = 84569, -- Gundargaz
[61874627] = 84571, -- Shadowvein Point
[59466408] = 84568, -- Camp Murroch
[63417898] = 84570, -- Opportunity Point
}
points[2215] = { -- "Hallowfall"
[42765571] = 84575, -- Mereldar
[69064571] = 84572, -- Dunnelle's Kindess (Dunelle's Rest)
[49133953] = 84573, -- Lorel's Crossing (Fjord Tavern)
[40576800] = 84574, -- Light's Redoubt
}
points[2255] = { -- "Azj-Kahet"
[58961862] = 84579, -- Faerin's Advance
[56863897] = 84582, -- Weaver's Lair (The Trap Door)
[77956277] = 84580, -- Mmarl (Rock Bottom Inn)
[44856626] = 84581, -- Wildcamp Ul'ar
}
points[2216] = { -- "City of Threads"
[57453850] = 84577, -- The Burrows, Lower City (The Cobwebs)
[62044136] = 84576, -- High Hollows
}
points[2213] = { -- "City of Threads, Umbral Bazaar"
[49742225] = 84578, -- Umbral Bazaar (The Skittering Lounge)
}