forked from ESOUIMods/LibQuestData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LibQuestData_Filters.lua
4754 lines (4730 loc) · 116 KB
/
LibQuestData_Filters.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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- Init
local lib = _G["LibQuestData"]
local internal = _G["LibQuestData_Internal"]
-- Libraries
local LMP = LibMapPins
local GPS = LibGPS3
local LMD = LibMapData
local prerequisite_table = {
[143] = { -- Embracing the Darkness
142, -- Peering Into Darkness
},
[465] = { -- The Blood-Splattered Shield
4903, -- Dream-Walk Into Darkness
},
[467] = { -- Sir Hughes' Fate
737, -- Retaking Firebrand Keep
2576, -- Tracking Sir Hughes
},
[499] = { -- Pursuing the Shard
1541, -- A Prison of Sleep
},
[521] = { -- Azura's Aid
3637, -- Godrun's Dream
},
[575] = { -- Vaermina's Gambit
521, -- Azura's Aid
},
[737] = { -- Retaking Firebrand Keep
736, -- The Flame of Dissent
},
[973] = { -- Weller's Counter Offer
974, -- A Duke in Exile
},
[1339] = { -- A Predator's Heart
2536, -- Plowshares to Swords
},
[1346] = { -- Ending the Ogre Threat
1437, -- General Godrun's Orders
},
[1437] = { -- General Godrun's Orders
1639, -- Another Omen
},
[1527] = { -- The Sower Reaps
1485, -- They Dragged Him Away
},
[1529] = { -- Azura's Guardian
1536, -- Fire in the Fields
},
[1541] = { -- A Prison of Sleep
1529, -- Azura's Guardian
},
[1568] = { -- A Means to an End
1554, -- Blood Revenge
},
[1633] = { -- The Return of the Dream Shard
2497, -- Saving Hosni
},
[1639] = { -- Another Omen
1633, -- The Return of the Dream Shard
},
[1709] = { -- Rozenn's Dream
1678, -- The Slumbering Farmer
},
[1735] = { -- Unanswered Questions
467, -- Sir Hughes' Fate
},
[1834] = { -- Heart of Evil
3280, -- Imperial Infiltration
},
[1839] = { -- Box Clicking For the Win!
1815, -- Greg's Training Quest
},
[2017] = { -- The Lion's Den
2016, -- Hallin's Burden
},
[2018] = { -- A Thirst for Revolution
2017, -- The Lion's Den
},
[2047] = { -- The Gate to Quagmire
2046, -- Dreams to Nightmares
},
[2146] = { -- The Impervious Vault
2130, -- Rise of the Dead
},
[2184] = { -- Tu'whacca's Breath
2146, -- The Impervious Vault
},
[2192] = { -- A Reckoning with Uwafa
2184, -- Tu'whacca's Breath
},
[2193] = { -- The Scholar of Bergama
2192, -- A Reckoning with Uwafa
},
[2222] = { -- Alasan's Plot
2192, -- A Reckoning with Uwafa
},
[2240] = { -- Shiri's Research
2222, -- Alasan's Plot
},
[2403] = { -- The Search for Shiri
3296, -- Trials of the Hero
},
[2408] = { -- In Search of the Ash'abah
2146, -- The Impervious Vault
},
[2450] = { -- A Woman Wronged
2451, -- A Ransom for Miranda
},
[2495] = { -- The Signet Ring
499, -- Pursuing the Shard
},
[2496] = { -- Evidence Against Adima
2495, -- The Signet Ring
},
[2497] = { -- Saving Hosni
2496, -- Evidence Against Adima
},
[2536] = { -- Plowshares to Swords
1384, -- Old Adventurers
},
[2538] = { -- Gift from a Suitor
614, -- A Look in the Mirror
},
[2564] = { -- Two Sides to Every Coin
2552, -- Army at the Gates
},
[2566] = { -- Life of the Duchess
2564, -- Two Sides to Every Coin
},
[2567] = { -- The Safety of the Kingdom
2566, -- Life of the Duchess
},
[2576] = { -- Tracking Sir Hughes
2567, -- The Safety of the Kingdom
},
[2578] = { -- Scamp Invasion
2561, -- A Family Affair
},
[2608] = { -- The Elder Scroll of Ghartok
4724, -- Reporting for Duty
},
[2609] = { -- The Elder Scroll of Chim
4724, -- Reporting for Duty
},
[2610] = { -- The Elder Scroll of Altadoon
4724, -- Reporting for Duty
},
[2611] = { -- The Elder Scroll of Mnem
4724, -- Reporting for Duty
},
[2612] = { -- The Elder Scroll of Ni-Mohk
4724, -- Reporting for Duty
},
[2613] = { -- The Elder Scroll of Alma Ruma
4724, -- Reporting for Duty
},
[2634] = { -- The Elder Scroll of Ni-Mohk
4727, -- Reporting for Duty
},
[2635] = { -- The Elder Scroll of Alma Ruma
4727, -- Reporting for Duty
},
[2637] = { -- The Elder Scroll of Altadoon
4727, -- Reporting for Duty
},
[2638] = { -- The Elder Scroll of Mnem
4727, -- Reporting for Duty
},
[2639] = { -- The Elder Scroll of Ghartok
4727, -- Reporting for Duty
},
[2640] = { -- The Elder Scroll of Chim
4727, -- Reporting for Duty
},
[2655] = { -- The Elder Scroll of Altadoon
4706, -- Reporting for Duty
},
[2656] = { -- The Elder Scroll of Mnem
4706, -- Reporting for Duty
},
[2658] = { -- The Elder Scroll of Ghartok
4706, -- Reporting for Duty
},
[2659] = { -- The Elder Scroll of Chim
4706, -- Reporting for Duty
},
[2660] = { -- The Elder Scroll of Ni-Mohk
4706, -- Reporting for Duty
},
[2661] = { -- The Elder Scroll of Alma Ruma
4706, -- Reporting for Duty
},
[2672] = { -- Scout Fort Warden
4706, -- Reporting for Duty
},
[2673] = { -- Scout Fort Rayles
4706, -- Reporting for Duty
},
[2674] = { -- Scout Fort Glademist
4706, -- Reporting for Duty
},
[2675] = { -- Scout Fort Ash
4706, -- Reporting for Duty
},
[2676] = { -- Scout Fort Aleswell
4706, -- Reporting for Duty
},
[2677] = { -- Scout Fort Dragonclaw
4706, -- Reporting for Duty
},
[2678] = { -- Scout Chalman Keep
4706, -- Reporting for Duty
},
[2679] = { -- Scout Arrius Keep
4706, -- Reporting for Duty
},
[2680] = { -- Scout Kingscrest Keep
4706, -- Reporting for Duty
},
[2682] = { -- Scout Farragut Keep
4706, -- Reporting for Duty
},
[2683] = { -- Scout Blue Road Keep
4706, -- Reporting for Duty
},
[2684] = { -- Scout Drakelowe Keep
4706, -- Reporting for Duty
},
[2685] = { -- Scout Castle Alessia
4706, -- Reporting for Duty
},
[2686] = { -- Scout Castle Faregyl
4706, -- Reporting for Duty
},
[2688] = { -- Scout Castle Brindle
4706, -- Reporting for Duty
},
[2690] = { -- Scout Castle Bloodmayne
4706, -- Reporting for Duty
},
[2691] = { -- Scout Warden Mine
4706, -- Reporting for Duty
},
[2692] = { -- Scout Rayles Mine
4706, -- Reporting for Duty
},
[2693] = { -- Scout Glademist Mine
4706, -- Reporting for Duty
},
[2694] = { -- Scout Ash Mine
4706, -- Reporting for Duty
},
[2697] = { -- Scout Aleswell Mine
4706, -- Reporting for Duty
},
[2698] = { -- Scout Dragonclaw Mine
4706, -- Reporting for Duty
},
[2699] = { -- Scout Chalman Mine
4706, -- Reporting for Duty
},
[2700] = { -- Scout Arrius Mine
4706, -- Reporting for Duty
},
[2701] = { -- Scout Kingscrest Mine
4706, -- Reporting for Duty
},
[2702] = { -- Scout Farragut Mine
4706, -- Reporting for Duty
},
[2703] = { -- Scout Blue Road Mine
4706, -- Reporting for Duty
},
[2704] = { -- Scout Drakelowe Mine
4706, -- Reporting for Duty
},
[2705] = { -- Scout Alessia Mine
4706, -- Reporting for Duty
},
[2706] = { -- Scout Faregyl Mine
4706, -- Reporting for Duty
},
[2707] = { -- Scout Roebeck Mine
4706, -- Reporting for Duty
},
[2708] = { -- Scout Brindle Mine
4706, -- Reporting for Duty
},
[2709] = { -- Scout Black Boot Mine
4706, -- Reporting for Duty
},
[2710] = { -- Scout Bloodmayne Mine
4706, -- Reporting for Duty
},
[2721] = { -- Scout Warden Farm
4706, -- Reporting for Duty
},
[2722] = { -- Scout Rayles Farm
4706, -- Reporting for Duty
},
[2723] = { -- Scout Glademist Farm
4706, -- Reporting for Duty
},
[2724] = { -- Scout Ash Farm
4706, -- Reporting for Duty
},
[2726] = { -- Scout Aleswell Farm
4706, -- Reporting for Duty
},
[2727] = { -- Scout Dragonclaw Farm
4706, -- Reporting for Duty
},
[2728] = { -- Scout Chalman Farm
4706, -- Reporting for Duty
},
[2729] = { -- Scout Arrius Farm
4706, -- Reporting for Duty
},
[2730] = { -- Scout Kingscrest Farm
4706, -- Reporting for Duty
},
[2731] = { -- Scout Farragut Farm
4706, -- Reporting for Duty
},
[2732] = { -- Scout Blue Road Farm
4706, -- Reporting for Duty
},
[2733] = { -- Scout Drakelowe Farm
4706, -- Reporting for Duty
},
[2734] = { -- Scout Alessia Farm
4706, -- Reporting for Duty
},
[2736] = { -- Scout Faregyl Farm
4706, -- Reporting for Duty
},
[2737] = { -- Scout Roebeck Farm
4706, -- Reporting for Duty
},
[2738] = { -- Scout Brindle Farm
4706, -- Reporting for Duty
},
[2739] = { -- Scout Black Boot Farm
4706, -- Reporting for Duty
},
[2740] = { -- Scout Bloodmayne Farm
4706, -- Reporting for Duty
},
[2741] = { -- Scout Warden Lumbermill
4706, -- Reporting for Duty
},
[2742] = { -- Scout Rayles Lumbermill
4706, -- Reporting for Duty
},
[2743] = { -- Scout Glademist Lumbermill
4706, -- Reporting for Duty
},
[2744] = { -- Scout Ash Lumbermill
4706, -- Reporting for Duty
},
[2745] = { -- Scout Aleswell Lumbermill
4706, -- Reporting for Duty
},
[2746] = { -- Scout Dragonclaw Lumbermill
4706, -- Reporting for Duty
},
[2747] = { -- Scout Chalman Lumbermill
4706, -- Reporting for Duty
},
[2748] = { -- Scout Arrius Lumbermill
4706, -- Reporting for Duty
},
[2749] = { -- Scout Kingscrest Lumbermill
4706, -- Reporting for Duty
},
[2750] = { -- Scout Farragut Lumbermill
4706, -- Reporting for Duty
},
[2751] = { -- Scout Blue Road Lumbermill
4706, -- Reporting for Duty
},
[2752] = { -- Scout Drakelowe Lumbermill
4706, -- Reporting for Duty
},
[2753] = { -- Scout Alessia Lumbermill
4706, -- Reporting for Duty
},
[2754] = { -- Scout Faregyl Lumbermill
4706, -- Reporting for Duty
},
[2755] = { -- Scout Roebeck Lumbermill
4706, -- Reporting for Duty
},
[2756] = { -- Scout Brindle Lumbermill
4706, -- Reporting for Duty
},
[2757] = { -- Scout Black Boot Lumbermill
4706, -- Reporting for Duty
},
[2758] = { -- Scout Bloodmayne Lumbermill
4706, -- Reporting for Duty
},
[2759] = { -- Kill Enemy Players
4727, -- Reporting for Duty
},
[2767] = { -- Scout Fort Warden
4727, -- Reporting for Duty
},
[2768] = { -- Scout Fort Rayles
4727, -- Reporting for Duty
},
[2769] = { -- Scout Fort Glademist
4727, -- Reporting for Duty
},
[2770] = { -- Scout Fort Ash
4727, -- Reporting for Duty
},
[2771] = { -- Scout Fort Aleswell
4727, -- Reporting for Duty
},
[2772] = { -- Scout Fort Dragonclaw
4727, -- Reporting for Duty
},
[2773] = { -- Scout Chalman Keep
4727, -- Reporting for Duty
},
[2774] = { -- Scout Arrius Keep
4727, -- Reporting for Duty
},
[2775] = { -- Scout Kingscrest Keep
4727, -- Reporting for Duty
},
[2776] = { -- Scout Farragut Keep
4727, -- Reporting for Duty
},
[2777] = { -- Scout Blue Road Keep
4727, -- Reporting for Duty
},
[2778] = { -- Scout Drakelowe Keep
4727, -- Reporting for Duty
},
[2779] = { -- Scout Castle Alessia
4727, -- Reporting for Duty
},
[2780] = { -- Scout Castle Faregyl
4727, -- Reporting for Duty
},
[2781] = { -- Scout Castle Roebeck
4727, -- Reporting for Duty
},
[2782] = { -- Scout Castle Brindle
4727, -- Reporting for Duty
},
[2783] = { -- Scout Castle Black Boot
4727, -- Reporting for Duty
},
[2784] = { -- Scout Castle Bloodmayne
4727, -- Reporting for Duty
},
[2786] = { -- Scout Warden Mine
4727, -- Reporting for Duty
},
[2787] = { -- Scout Rayles Mine
4727, -- Reporting for Duty
},
[2788] = { -- Scout Glademist Mine
4727, -- Reporting for Duty
},
[2789] = { -- Scout Ash Mine
4727, -- Reporting for Duty
},
[2790] = { -- Scout Aleswell Mine
4727, -- Reporting for Duty
},
[2791] = { -- Scout Dragonclaw Mine
4727, -- Reporting for Duty
},
[2793] = { -- Scout Chalman Mine
4727, -- Reporting for Duty
},
[2794] = { -- Scout Arrius Mine
4727, -- Reporting for Duty
},
[2795] = { -- Scout Kingscrest Mine
4727, -- Reporting for Duty
},
[2796] = { -- Scout Farragut Mine
4727, -- Reporting for Duty
},
[2797] = { -- Scout Blue Road Mine
4727, -- Reporting for Duty
},
[2798] = { -- Scout Drakelowe Mine
4727, -- Reporting for Duty
},
[2799] = { -- Scout Alessia Mine
4727, -- Reporting for Duty
},
[2800] = { -- Scout Roebeck Mine
4727, -- Reporting for Duty
},
[2801] = { -- Scout Brindle Mine
4727, -- Reporting for Duty
},
[2802] = { -- Scout Black Boot Mine
4727, -- Reporting for Duty
},
[2803] = { -- Scout Bloodmayne Mine
4727, -- Reporting for Duty
},
[2804] = { -- Scout Warden Farm
4727, -- Reporting for Duty
},
[2805] = { -- Scout Rayles Farm
4727, -- Reporting for Duty
},
[2806] = { -- Scout Glademist Farm
4727, -- Reporting for Duty
},
[2807] = { -- Scout Ash Farm
4727, -- Reporting for Duty
},
[2808] = { -- Scout Aleswell Farm
4727, -- Reporting for Duty
},
[2809] = { -- Scout Dragonclaw Farm
4727, -- Reporting for Duty
},
[2810] = { -- Scout Chalman Farm
4727, -- Reporting for Duty
},
[2811] = { -- Scout Arrius Farm
4727, -- Reporting for Duty
},
[2812] = { -- Scout Kingscrest Farm
4727, -- Reporting for Duty
},
[2813] = { -- Scout Farragut Farm
4727, -- Reporting for Duty
},
[2814] = { -- Scout Blue Road Farm
4727, -- Reporting for Duty
},
[2815] = { -- Scout Drakelowe Farm
4727, -- Reporting for Duty
},
[2816] = { -- Scout Alessia Farm
4727, -- Reporting for Duty
},
[2817] = { -- Scout Faregyl Farm
4727, -- Reporting for Duty
},
[2818] = { -- Scout Roebeck Farm
4727, -- Reporting for Duty
},
[2819] = { -- Scout Brindle Farm
4727, -- Reporting for Duty
},
[2820] = { -- Scout Black Boot Farm
4727, -- Reporting for Duty
},
[2821] = { -- Scout Bloodmayne Farm
4727, -- Reporting for Duty
},
[2822] = { -- Scout Warden Lumbermill
4727, -- Reporting for Duty
},
[2823] = { -- Scout Rayles Lumbermill
4727, -- Reporting for Duty
},
[2824] = { -- Scout Glademist Lumbermill
4727, -- Reporting for Duty
},
[2825] = { -- Scout Ash Lumbermill
4727, -- Reporting for Duty
},
[2826] = { -- Scout Aleswell Lumbermill
4727, -- Reporting for Duty
},
[2827] = { -- Scout Dragonclaw Lumbermill
4727, -- Reporting for Duty
},
[2828] = { -- Scout Chalman Lumbermill
4727, -- Reporting for Duty
},
[2829] = { -- Scout Arrius Lumbermill
4727, -- Reporting for Duty
},
[2830] = { -- Scout Kingscrest Lumbermill
4727, -- Reporting for Duty
},
[2831] = { -- Scout Farragut Lumbermill
4727, -- Reporting for Duty
},
[2832] = { -- Scout Blue Road Lumbermill
4727, -- Reporting for Duty
},
[2833] = { -- Scout Drakelowe Lumbermill
4727, -- Reporting for Duty
},
[2834] = { -- Scout Alessia Lumbermill
4727, -- Reporting for Duty
},
[2835] = { -- Scout Faregyl Lumbermill
4727, -- Reporting for Duty
},
[2836] = { -- Scout Roebeck Lumbermill
4727, -- Reporting for Duty
},
[2837] = { -- Scout Brindle Lumbermill
4727, -- Reporting for Duty
},
[2838] = { -- Scout Black Boot Lumbermill
4727, -- Reporting for Duty
},
[2839] = { -- Scout Bloodmayne Lumbermill
4727, -- Reporting for Duty
},
[2840] = { -- Scout Fort Warden
4724, -- Reporting for Duty
},
[2841] = { -- Scout Fort Rayles
4724, -- Reporting for Duty
},
[2842] = { -- Scout Fort Glademist
4724, -- Reporting for Duty
},
[2843] = { -- Scout Fort Ash
4724, -- Reporting for Duty
},
[2844] = { -- Scout Fort Aleswell
4724, -- Reporting for Duty
},
[2845] = { -- Scout Fort Dragonclaw
4724, -- Reporting for Duty
},
[2846] = { -- Scout Chalman Keep
4724, -- Reporting for Duty
},
[2847] = { -- Scout Arrius Keep
4724, -- Reporting for Duty
},
[2848] = { -- Scout Kingscrest Keep
4724, -- Reporting for Duty
},
[2849] = { -- Scout Farragut Keep
4724, -- Reporting for Duty
},
[2850] = { -- Scout Blue Road Keep
4724, -- Reporting for Duty
},
[2851] = { -- Scout Drakelowe Keep
4724, -- Reporting for Duty
},
[2852] = { -- Scout Castle Alessia
4724, -- Reporting for Duty
},
[2853] = { -- Scout Castle Faregyl
4724, -- Reporting for Duty
},
[2854] = { -- Scout Castle Roebeck
4724, -- Reporting for Duty
},
[2855] = { -- Scout Castle Brindle
4724, -- Reporting for Duty
},
[2856] = { -- Scout Castle Black Boot
4724, -- Reporting for Duty
},
[2857] = { -- Scout Castle Bloodmayne
4724, -- Reporting for Duty
},
[2858] = { -- Scout Warden Mine
4724, -- Reporting for Duty
},
[2859] = { -- Scout Rayles Mine
4724, -- Reporting for Duty
},
[2860] = { -- Scout Glademist Mine
4724, -- Reporting for Duty
},
[2861] = { -- Scout Ash Mine
4724, -- Reporting for Duty
},
[2862] = { -- Scout Aleswell Mine
4724, -- Reporting for Duty
},
[2863] = { -- Scout Dragonclaw Mine
4724, -- Reporting for Duty
},
[2864] = { -- Scout Chalman Mine
4724, -- Reporting for Duty
},
[2865] = { -- Scout Arrius Mine
4724, -- Reporting for Duty
},
[2866] = { -- Scout Kingscrest Mine
4724, -- Reporting for Duty
},
[2867] = { -- Scout Farragut Mine
4724, -- Reporting for Duty
},
[2868] = { -- Scout Blue Road Mine
4724, -- Reporting for Duty
},
[2869] = { -- Scout Drakelowe Mine
4724, -- Reporting for Duty
},
[2870] = { -- Scout Alessia Mine
4724, -- Reporting for Duty
},
[2871] = { -- Scout Faregyl Mine
4724, -- Reporting for Duty
},
[2872] = { -- Scout Roebeck Mine
4724, -- Reporting for Duty
},
[2873] = { -- Scout Brindle Mine
4724, -- Reporting for Duty
},
[2874] = { -- Scout Black Boot Mine
4724, -- Reporting for Duty
},
[2875] = { -- Scout Bloodmayne Mine
4724, -- Reporting for Duty
},
[2876] = { -- Scout Warden Farm
4724, -- Reporting for Duty
},
[2877] = { -- Scout Rayles Farm
4724, -- Reporting for Duty
},
[2878] = { -- Scout Glademist Farm
4724, -- Reporting for Duty
},
[2879] = { -- Scout Ash Farm
4724, -- Reporting for Duty
},
[2880] = { -- Scout Aleswell Farm
4724, -- Reporting for Duty
},
[2881] = { -- Scout Dragonclaw Farm
4724, -- Reporting for Duty
},
[2882] = { -- Scout Chalman Farm
4724, -- Reporting for Duty
},
[2883] = { -- Scout Arrius Farm
4724, -- Reporting for Duty
},
[2884] = { -- Scout Faregyl Farm
4724, -- Reporting for Duty
},
[2885] = { -- Scout Roebeck Farm
4724, -- Reporting for Duty
},
[2886] = { -- Scout Brindle Farm
4724, -- Reporting for Duty
},
[2887] = { -- Scout Black Boot Farm 4
724, -- Reporting for Duty
},
[2888] = { -- Scout Bloodmayne Farm
4724, -- Reporting for Duty
},
[2889] = { -- Scout Warden Lumbermill
4724, -- Reporting for Duty
},
[2890] = { -- Scout Rayles Lumbermill
4724, -- Reporting for Duty
},
[2891] = { -- Scout Glademist Lumbermill
4724, -- Reporting for Duty
},
[2892] = { -- Scout Ash Lumbermill
4724, -- Reporting for Duty
},
[2893] = { -- Scout Aleswell Lumbermill
4724, -- Reporting for Duty
},
[2894] = { -- Scout Dragonclaw Lumbermill
4724, -- Reporting for Duty
},
[2895] = { -- Scout Chalman Lumbermill
4724, -- Reporting for Duty
},
[2896] = { -- Scout Arrius Lumbermill
4724, -- Reporting for Duty
},
[2898] = { -- Scout Kingscrest Lumbermill
4724, -- Reporting for Duty
},
[2899] = { -- Scout Farragut Lumbermill
4724, -- Reporting for Duty
},
[2900] = { -- Scout Blue Road Lumbermill
4724, -- Reporting for Duty
},
[2901] = { -- Scout Drakelowe Lumbermill
4724, -- Reporting for Duty
},
[2902] = { -- Scout Alessia Lumbermill
4724, -- Reporting for Duty
},
[2903] = { -- Scout Faregyl Lumbermill
4724, -- Reporting for Duty
},
[2904] = { -- Scout Roebeck Lumbermill
4724, -- Reporting for Duty
},
[2905] = { -- Scout Brindle Lumbermill
4724, -- Reporting for Duty
},
[2906] = { -- Scout Black Boot Lumbermill
4724, -- Reporting for Duty
},
[2907] = { -- Scout Bloodmayne Lumbermill
4724, -- Reporting for Duty
},
[2915] = { -- Capture Fort Warden
4706, -- Reporting for Duty
},
[2916] = { -- Capture Fort Rayles
4706, -- Reporting for Duty
},
[2917] = { -- Capture Fort Glademist
4706, -- Reporting for Duty
},
[2918] = { -- Capture Fort Ash
4706, -- Reporting for Duty
},
[2919] = { -- Capture Fort Aleswell
4706, -- Reporting for Duty
},
[2920] = { -- Capture Fort Dragonclaw
4706, -- Reporting for Duty
},
[2921] = { -- Capture Chalman Keep
4706, -- Reporting for Duty
},
[2922] = { -- Capture Arrius Keep
4706, -- Reporting for Duty
},
[2923] = { -- Capture Kingscrest Keep
4706, -- Reporting for Duty
},
[2924] = { -- Capture Farragut Keep
4706, -- Reporting for Duty
},
[2925] = { -- Capture Blue Road Keep
4706, -- Reporting for Duty
},
[2926] = { -- Capture Drakelowe Keep
4706, -- Reporting for Duty
},
[2927] = { -- Capture Castle Alessia
4706, -- Reporting for Duty
},
[2928] = { -- Capture Castle Faregyl
4706, -- Reporting for Duty
},
[2929] = { -- Capture Castle Roebeck
4706, -- Reporting for Duty
},
[2930] = { -- Capture Castle Brindle
4706, -- Reporting for Duty
},
[2931] = { -- Capture Castle Black Boot
4706, -- Reporting for Duty
},
[2932] = { -- Capture Castle Bloodmayne
4706, -- Reporting for Duty
},
[2933] = { -- Capture Warden Mine
4706, -- Reporting for Duty
},
[2934] = { -- Capture Rayles Mine
4706, -- Reporting for Duty
},
[2935] = { -- Capture Glademist Mine
4706, -- Reporting for Duty
},
[2936] = { -- Capture Ash Mine
4706, -- Reporting for Duty
},
[2937] = { -- Capture Aleswell Mine
4706, -- Reporting for Duty
},
[2938] = { -- Capture Dragonclaw Mine
4706, -- Reporting for Duty
},
[2939] = { -- Capture Chalman Mine
4706, -- Reporting for Duty
},
[2940] = { -- Capture Arrius Mine
4706, -- Reporting for Duty
},
[2941] = { -- Capture Kingscrest Mine
4706, -- Reporting for Duty
},
[2942] = { -- Capture Farragut Mine
4706, -- Reporting for Duty
},
[2943] = { -- Capture Blue Road Mine
4706, -- Reporting for Duty
},
[2944] = { -- Capture Drakelowe Mine
4706, -- Reporting for Duty
},
[2945] = { -- Capture Alessia Mine
4706, -- Reporting for Duty
},
[2946] = { -- Capture Faregyl Mine
4706, -- Reporting for Duty
},
[2947] = { -- Capture Roebeck Mine
4706, -- Reporting for Duty
},
[2950] = { -- Capture Brindle Mine
4706, -- Reporting for Duty
},
[2951] = { -- Capture Black Boot Mine
4706, -- Reporting for Duty
},
[2952] = { -- Capture Bloodmayne Mine
4706, -- Reporting for Duty
},
[2953] = { -- Capture Warden Farm
4706, -- Reporting for Duty
},
[2954] = { -- Capture Rayles Farm
4706, -- Reporting for Duty
},
[2955] = { -- Capture Glademist Farm
4706, -- Reporting for Duty
},
[2956] = { -- Capture Ash Farm
4706, -- Reporting for Duty
},
[2957] = { -- Capture Aleswell Farm
4706, -- Reporting for Duty
},
[2958] = { -- Capture Dragonclaw Farm
4706, -- Reporting for Duty
},
[2959] = { -- Capture Chalman Farm
4706, -- Reporting for Duty
},
[2960] = { -- Capture Arrius Farm
4706, -- Reporting for Duty
},
[2961] = { -- Capture Kingscrest Farm
4706, -- Reporting for Duty
},
[2962] = { -- Capture Farragut Farm
4706, -- Reporting for Duty
},
[2963] = { -- Capture Blue Road Farm
4706, -- Reporting for Duty
},
[2964] = { -- Capture Drakelowe Farm
4706, -- Reporting for Duty
},
[2965] = { -- Capture Alessia Farm
4706, -- Reporting for Duty
},
[2966] = { -- Capture Faregyl Farm
4706, -- Reporting for Duty
},
[2967] = { -- Capture Roebeck Farm
4706, -- Reporting for Duty
},
[2968] = { -- Capture Brindle Farm
4706, -- Reporting for Duty
},
[2969] = { -- Capture Black Boot Farm
4706, -- Reporting for Duty
},
[2970] = { -- Capture Bloodmayne Farm
4706, -- Reporting for Duty
},
[2972] = { -- Capture Warden Lumbermill
4706, -- Reporting for Duty
},
[2973] = { -- Capture Rayles Lumbermill
4706, -- Reporting for Duty
},
[2974] = { -- Capture Glademist Lumbermill
4706, -- Reporting for Duty
},
[2975] = { -- Capture Ash Lumbermill
4706, -- Reporting for Duty
},
[2976] = { -- Capture Aleswell Lumbermill
4706, -- Reporting for Duty
},
[2977] = { -- Capture Dragonclaw Lumbermill
4706, -- Reporting for Duty