forked from Zyrrael/AAP-Classic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MapFunctions.lua
2138 lines (2118 loc) · 69.1 KB
/
MapFunctions.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
if (tonumber(string.sub(AAPClassic.Build, 1,1)) > 2) then
--return
end
AAPClassic.Icons = {}
AAPClassic.MapIcons = {}
AAPClassic.PickupIcons = {}
AAPClassic.PickupIconsMap = {}
AAPClassic.HandinIcons = {}
AAPClassic.HandinIconsMap = {}
AAPClassic.Tooltips = {}
AAPClassic.Tooltips2 = {}
AAPClassic.TooltipsMap = {}
AAPClassic.TooltipsMap2 = {}
AAPClassic.PickupTooltips = {}
AAPClassic.PickupTooltips2 = {}
AAPClassic.DotColorNr = 0
AAPClassic.MapMobListNr = 0
AAPClassic.ActiveMapIcons = 0
AAPClassic.ActiveIcons = 0
AAPClassic.DotColorQList = {}
AAPClassic["DotColorList"] = {
[1] = {
1,
0,
0,
},
[2] = {
0,
1,
0,
},
[3] = {
0,
0,
1,
},
[4] = {
1,
1,
0,
},
[5] = {
1,
0,
1,
},
[6] = {
0,
1,
1,
},
[7] = {
1,
0.5,
0,
},
[8] = {
1,
0,
0.5,
},
[9] = {
0.5,
1,
0,
},
[10] = {
0,
1,
0.5,
},
[11] = {
0.5,
0,
1,
},
[12] = {
0,
0.5,
1,
},
[13] = {
0,
0.2,
1,
},
[14] = {
0,
1,
0.2,
},
[15] = {
1,
0.2,
0.4,
},
[16] = {
1,
0.6,
0.1,
},
[17] = {
0.6,
0.2,
0.1,
},
[18] = {
0.2,
0.9,
0.1,
},
}
AAPClassic["TranslateZones"] = {
[1] = 1426, --Dun Morogh
[2] = 0, --Longshore
[3] = 1418, --Badlands
[4] = 1419, --Blasted Lands
[7] = 0, --Blackwater Cove
[8] = 1435, --Swamp of Sorrows
[9] = 0, --Northshire Valley
[10] = 1431, --Duskwood
[11] = 1437, --Wetlands
[12] = 1429, --Elwynn Forest
[13] = 0, --The World Tree
[14] = 1411, --Durotar
[15] = 1445, --Dustwallow Marsh
[16] = 1447, --Azshara
[17] = 1413, --The Barrens
[18] = 0, --Crystal Lake
[19] = 0, --Zul'Gurub
[20] = 0, --Moonbrook
[21] = 0, --Kul Tiras
[22] = 0, --Programmer Isle
[23] = 0, --Northshire River
[24] = 0, --Northshire Abbey
[25] = 0, --Blackrock Mountain
[26] = 0, --Lighthouse
[28] = 1422, --Western Plaguelands
[30] = 0, --Nine
[32] = 0, --The Cemetary
[33] = 1434, --Stranglethorn Vale
[34] = 0, --Echo Ridge Mine
[35] = 0, --Booty Bay
[36] = 1416, --Alterac Mountains
[37] = 0, --Lake Nazferiti
[38] = 1432, --Loch Modan
[40] = 1436, --Westfall
[41] = 1430, --Deadwind Pass
[42] = 0, --Darkshire
[43] = 0, --Wild Shore
[44] = 1433, --Redridge Mountains
[45] = 1417, --Arathi Highlands
[46] = 1428, --Burning Steppes
[47] = 1425, --The Hinterlands
[49] = 0, --Dead Man's Hole
[51] = 1427, --Searing Gorge
[53] = 0, --Thieves Camp
[54] = 0, --Jasperlode Mine
[55] = 0, --Valley of Heroes
[56] = 0, --Heroes' Vigil
[57] = 0, --Fargodeep Mine
[59] = 0, --Northshire Vineyards
[60] = 0, --Forest's Edge
[61] = 0, --Thunder Falls
[62] = 0, --Brackwell Pumpkin Patch
[63] = 0, --The Stonefield Farm
[64] = 0, --The Maclure Vineyards
[68] = 0, --Lake Everstill
[69] = 1433, --Lakeshire
[70] = 0, --Stonewatch
[71] = 0, --Stonewatch Falls
[72] = 0, --The Dark Portal
[73] = 0, --The Tainted Scar
[74] = 0, --Pool of Tears
[75] = 0, --Stonard
[76] = 0, --Fallow Sanctuary
[77] = 0, --Anvilmar
[80] = 0, --Stormwind Mountains
[85] = 1420, --Tirisfal Glades
[86] = 0, --Stone Cairn Lake
[87] = 0, --Goldshire
[88] = 0, --Eastvale Logging Camp
[89] = 0, --Mirror Lake Orchard
[91] = 0, --Tower of Azora
[92] = 0, --Mirror Lake
[93] = 0, --Vul'Gol Ogre Mound
[94] = 0, --Raven Hill
[95] = 0, --Redridge Canyons
[96] = 0, --Tower of Ilgalar
[97] = 0, --Alther's Mill
[98] = 0, --Rethban Caverns
[99] = 0, --Rebel Camp
[100] = 0, --Nesingwary's Expedition
[101] = 0, --Kurzen's Compound
[102] = 0, --Ruins of Zul'Kunda
[103] = 0, --Ruins of Zul'Mamwe
[104] = 0, --The Vile Reef
[105] = 0, --Mosh'Ogg Ogre Mound
[106] = 0, --The Stockpile
[107] = 0, --Saldean's Farm
[108] = 0, --Sentinel Hill
[109] = 0, --Furlbrow's Pumpkin Farm
[111] = 0, --Jangolode Mine
[113] = 0, --Gold Coast Quarry
[115] = 0, --Westfall Lighthouse
[116] = 0, --Misty Valley
[117] = 0, --Grom'gol Base Camp
[118] = 0, --Whelgar's Excavation Site
[120] = 0, --Westbrook Garrison
[121] = 0, --Tranquil Gardens Cemetery
[122] = 0, --Zuuldaia Ruins
[123] = 0, --Bal'lal Ruins
[125] = 0, --Kal'ai Ruins
[126] = 0, --Tkashi Ruins
[127] = 0, --Balia'mah Ruins
[128] = 0, --Ziata'jai Ruins
[129] = 0, --Mizjah Ruins
[130] = 1421, --Silverpine Forest
[131] = 0, --Kharanos
[132] = 0, --Coldridge Valley
[133] = 0, --Gnomeregan
[134] = 0, --Gol'Bolar Quarry
[135] = 0, --Frostmane Hold
[136] = 0, --The Grizzled Den
[137] = 0, --Brewnall Village
[138] = 0, --Misty Pine Refuge
[139] = 1423, --Eastern Plaguelands
[141] = 1438, --Teldrassil
[142] = 0, --Ironband's Excavation Site
[143] = 0, --Mo'grosh Stronghold
[144] = 0, --Thelsamar
[145] = 0, --Algaz Gate
[146] = 0, --Stonewrought Dam
[147] = 0, --The Farstrider Lodge
[148] = 1439, --Darkshore
[149] = 0, --Silver Stream Mine
[150] = 0, --Menethil Harbor
[151] = 0, --Designer Island
[152] = 0, --The Bulwark
[153] = 0, --Ruins of Lordaeron
[154] = 0, --Deathknell
[155] = 0, --Night Web's Hollow
[156] = 0, --Solliden Farmstead
[157] = 0, --Agamand Mills
[158] = 0, --Agamand Family Crypt
[159] = 0, --Brill
[160] = 0, --Whispering Gardens
[161] = 0, --Terrace of Repose
[162] = 0, --Brightwater Lake
[163] = 0, --Gunther's Retreat
[164] = 0, --Garren's Haunt
[165] = 0, --Balnir Farmstead
[166] = 0, --Cold Hearth Manor
[167] = 0, --Crusader Outpost
[168] = 0, --The North Coast
[169] = 0, --Whispering Shore
[170] = 0, --Lordamere Lake
[172] = 0, --Fenris Isle
[173] = 0, --Faol's Rest
[186] = 0, --Dolanaar
[188] = 0, --Shadowglen
[189] = 0, --Steelgrill's Depot
[190] = 0, --Hearthglen
[192] = 0, --Northridge Lumber Camp
[193] = 0, --Ruins of Andorhal
[195] = 0, --School of Necromancy
[196] = 0, --Uther's Tomb
[197] = 0, --Sorrow Hill
[198] = 0, --The Weeping Cave
[199] = 0, --Felstone Field
[200] = 0, --Dalson's Tears
[201] = 0, --Gahrron's Withering
[202] = 0, --The Writhing Haunt
[203] = 0, --Mardenholde Keep
[204] = 0, --Pyrewood Village
[205] = 0, --Dun Modr
[207] = 0, --The Great Sea
[208] = 0, --Unused Ironcladcove
[209] = 0, --Shadowfang Keep
[211] = 0, --Iceflow Lake
[212] = 0, --Helm's Bed Lake
[213] = 0, --Deep Elem Mine
[214] = 0, --The Great Sea
[215] = 1412, --Mulgore
[219] = 0, --Alexston Farmstead
[220] = 0, --Red Cloud Mesa
[221] = 0, --Camp Narache
[222] = 0, --Bloodhoof Village
[223] = 0, --Stonebull Lake
[224] = 0, --Ravaged Caravan
[225] = 0, --Red Rocks
[226] = 0, --The Skittering Dark
[227] = 0, --Valgan's Field
[228] = 0, --The Sepulcher
[229] = 0, --Olsen's Farthing
[230] = 0, --The Greymane Wall
[231] = 0, --Beren's Peril
[232] = 0, --The Dawning Isles
[233] = 0, --Ambermill
[235] = 0, --Fenris Keep
[236] = 0, --Shadowfang Keep
[237] = 0, --The Decrepit Ferry
[238] = 0, --Malden's Orchard
[239] = 0, --The Ivar Patch
[240] = 0, --The Dead Field
[241] = 0, --The Rotting Orchard
[242] = 0, --Brightwood Grove
[243] = 0, --Forlorn Rowe
[244] = 0, --The Whipple Estate
[245] = 0, --The Yorgen Farmstead
[246] = 0, --The Cauldron
[247] = 0, --Grimesilt Dig Site
[249] = 0, --Dreadmaul Rock
[250] = 0, --Ruins of Thaurissan
[251] = 0, --Flame Crest
[252] = 0, --Blackrock Stronghold
[253] = 0, --The Pillar of Ash
[254] = 0, --Blackrock Mountain
[255] = 0, --Altar of Storms
[256] = 0, --Aldrassil
[257] = 0, --Shadowthread Cave
[258] = 0, --Fel Rock
[259] = 0, --Lake Al'Ameth
[260] = 0, --Starbreeze Village
[261] = 0, --Gnarlpine Hold
[262] = 0, --Ban'ethil Barrow Den
[263] = 0, --The Cleft
[264] = 0, --The Oracle Glade
[265] = 0, --Wellspring River
[266] = 0, --Wellspring Lake
[267] = 1424, --Hillsbrad Foothills
[268] = 0, --Azshara Crater
[269] = 0, --Dun Algaz
[271] = 0, --Southshore
[272] = 0, --Tarren Mill
[275] = 0, --Durnholde Keep
[276] = 0, --Stonewrought Pass
[277] = 0, --The Foothill Caverns
[278] = 0, --Lordamere Internment Camp
[279] = 0, --Dalaran
[280] = 0, --Strahnbrad
[281] = 0, --Ruins of Alterac
[282] = 0, --Crushridge Hold
[283] = 0, --Slaughter Hollow
[284] = 0, --The Uplands
[285] = 0, --Southpoint Tower
[286] = 0, --Hillsbrad Fields
[287] = 0, --Hillsbrad
[288] = 0, --Azurelode Mine
[289] = 0, --Nethander Stead
[290] = 0, --Dun Garok
[293] = 0, --Thoradin's Wall
[294] = 0, --Eastern Strand
[295] = 0, --Western Strand
[297] = 0, --Jaguero Isle
[298] = 0, --Baradin Bay
[299] = 0, --Menethil Bay
[300] = 0, --Misty Reed Strand
[301] = 0, --The Savage Coast
[302] = 0, --The Crystal Shore
[303] = 0, --Shell Beach
[305] = 0, --North Tide's Run
[306] = 0, --South Tide's Run
[307] = 0, --The Overlook Cliffs
[308] = 0, --The Forbidding Sea
[309] = 0, --Ironbeard's Tomb
[310] = 0, --Crystalvein Mine
[311] = 0, --Ruins of Aboraz
[312] = 0, --Janeiro's Point
[313] = 0, --Northfold Manor
[314] = 0, --Go'Shek Farm
[315] = 0, --Dabyrie's Farmstead
[316] = 0, --Boulderfist Hall
[317] = 0, --Witherbark Village
[318] = 0, --Drywhisker Gorge
[320] = 0, --Refuge Pointe
[321] = 0, --Hammerfall
[322] = 0, --Blackwater Shipwrecks
[323] = 0, --O'Breen's Camp
[324] = 0, --Stromgarde Keep
[325] = 0, --The Tower of Arathor
[326] = 0, --The Sanctum
[327] = 0, --Faldir's Cove
[328] = 0, --The Drowned Reef
[330] = 0, --Thandol Span
[331] = 1440, --Ashenvale
[332] = 0, --The Great Sea
[333] = 0, --Circle of East Binding
[334] = 0, --Circle of West Binding
[335] = 0, --Circle of Inner Binding
[336] = 0, --Circle of Outer Binding
[337] = 0, --Apocryphan's Rest
[338] = 0, --Angor Fortress
[339] = 0, --Lethlor Ravine
[340] = 0, --Kargath
[341] = 0, --Camp Kosh
[342] = 0, --Camp Boff
[343] = 0, --Camp Wurg
[344] = 0, --Camp Cagg
[345] = 0, --Agmond's End
[346] = 0, --Hammertoe's Digsite
[347] = 0, --Dustbelch Grotto
[348] = 0, --Aerie Peak
[349] = 0, --Wildhammer Keep
[350] = 0, --Quel'Danil Lodge
[351] = 0, --Skulk Rock
[352] = 0, --Zun'watha
[353] = 0, --Shadra'Alor
[354] = 0, --Jintha'Alor
[355] = 0, --The Altar of Zul
[356] = 0, --Seradane
[357] = 1444, --Feralas
[358] = 0, --Brambleblade Ravine
[359] = 0, --Bael Modan
[360] = 0, --The Venture Co. Mine
[361] = 1448, --Felwood
[362] = 0, --Razor Hill
[363] = 0, --Valley of Trials
[364] = 0, --The Den
[365] = 0, --Burning Blade Coven
[366] = 0, --Kolkar Crag
[367] = 0, --Sen'jin Village
[368] = 0, --Echo Isles
[369] = 0, --Thunder Ridge
[370] = 0, --Drygulch Ravine
[371] = 0, --Dustwind Cave
[372] = 0, --Tiragarde Keep
[373] = 0, --Scuttle Coast
[374] = 0, --Bladefist Bay
[375] = 0, --Deadeye Shore
[377] = 0, --Southfury River
[378] = 0, --Camp Taurajo
[379] = 0, --Far Watch Post
[380] = 0, --The Crossroads
[381] = 0, --Boulder Lode Mine
[382] = 0, --The Sludge Fen
[383] = 0, --The Dry Hills
[384] = 0, --Dreadmist Peak
[385] = 0, --Northwatch Hold
[386] = 0, --The Forgotten Pools
[387] = 0, --Lushwater Oasis
[388] = 0, --The Stagnant Oasis
[390] = 0, --Field of Giants
[391] = 0, --The Merchant Coast
[392] = 0, --Ratchet
[393] = 0, --Darkspear Strand
[396] = 0, --Winterhoof Water Well
[397] = 0, --Thunderhorn Water Well
[398] = 0, --Wildmane Water Well
[399] = 0, --Skyline Ridge
[400] = 1441, --Thousand Needles
[401] = 0, --The Tidus Stair
[403] = 0, --Shady Rest Inn
[404] = 0, --Bael'dun Digsite
[405] = 1443, --Desolace
[406] = 1442, --Stonetalon Mountains
[408] = 0, --Gillijim's Isle
[409] = 0, --Island of Doctor Lapidis
[410] = 0, --Razorwind Canyon
[411] = 0, --Bathran's Haunt
[412] = 0, --The Ruins of Ordil'Aran
[413] = 0, --Maestra's Post
[414] = 0, --The Zoram Strand
[415] = 0, --Astranaar
[416] = 0, --The Shrine of Aessina
[417] = 0, --Fire Scar Shrine
[418] = 0, --The Ruins of Stardust
[419] = 0, --The Howling Vale
[420] = 0, --Silverwind Refuge
[421] = 0, --Mystral Lake
[422] = 0, --Fallen Sky Lake
[424] = 0, --Iris Lake
[425] = 0, --Moonwell
[426] = 0, --Raynewood Retreat
[427] = 0, --The Shady Nook
[428] = 0, --Night Run
[429] = 0, --Xavian
[430] = 0, --Satyrnaar
[431] = 0, --Splintertree Post
[432] = 0, --The Dor'Danil Barrow Den
[433] = 0, --Falfarren River
[434] = 0, --Felfire Hill
[435] = 0, --Demon Fall Canyon
[436] = 0, --Demon Fall Ridge
[437] = 0, --Warsong Lumber Camp
[438] = 0, --Bough Shadow
[439] = 0, --The Shimmering Flats
[440] = 1446, --Tanaris
[441] = 0, --Lake Falathim
[442] = 0, --Auberdine
[443] = 0, --Ruins of Mathystra
[444] = 0, --Tower of Althalaxx
[445] = 0, --Cliffspring Falls
[446] = 0, --Bashal'Aran
[447] = 0, --Ameth'Aran
[448] = 0, --Grove of the Ancients
[449] = 0, --The Master's Glaive
[450] = 0, --Remtravel's Excavation
[452] = 0, --Mist's Edge
[453] = 0, --The Long Wash
[454] = 0, --Wildbend River
[455] = 0, --Blackwood Den
[456] = 0, --Cliffspring River
[457] = 0, --The Veiled Sea
[458] = 0, --Gold Road
[459] = 0, --Scarlet Watch Post
[460] = 0, --Sun Rock Retreat
[461] = 0, --Windshear Crag
[463] = 0, --Cragpool Lake
[464] = 0, --Mirkfallon Lake
[465] = 0, --The Charred Vale
[466] = 0, --Valley of the Bloodfuries
[467] = 0, --Stonetalon Peak
[468] = 0, --The Talon Den
[469] = 0, --Greatwood Vale
[471] = 0, --Brave Wind Mesa
[472] = 0, --Fire Stone Mesa
[473] = 0, --Mantle Rock
[477] = 0, --Ruins of Jubuwal
[478] = 0, --Pools of Arlithrien
[479] = 0, --The Rustmaul Dig Site
[480] = 0, --Camp E'thok
[481] = 0, --Splithoof Crag
[482] = 0, --Highperch
[483] = 0, --The Screeching Canyon
[484] = 0, --Freewind Post
[485] = 0, --The Great Lift
[486] = 0, --Galak Hold
[487] = 0, --Roguefeather Den
[488] = 0, --The Weathered Nook
[489] = 0, --Thalanaar
[490] = 1449, --Un'Goro Crater
[491] = 0, --Razorfen Kraul
[492] = 0, --Raven Hill Cemetery
[493] = 1450, --Moonglade
[496] = 0, --Brackenwall Village
[497] = 0, --Swamplight Manor
[498] = 0, --Bloodfen Burrow
[499] = 0, --Darkmist Cavern
[500] = 0, --Moggle Point
[501] = 0, --Beezil's Wreck
[502] = 0, --Witch Hill
[503] = 0, --Sentry Point
[504] = 0, --North Point Tower
[505] = 0, --West Point Tower
[506] = 0, --Lost Point
[507] = 0, --Bluefen
[508] = 0, --Stonemaul Ruins
[509] = 0, --The Den of Flame
[510] = 0, --The Dragonmurk
[511] = 0, --Wyrmbog
[512] = 0, --Onyxia's Lair
[513] = 0, --Theramore Isle
[514] = 0, --Foothold Citadel
[515] = 0, --Ironclad Prison
[516] = 0, --Dustwallow Bay
[517] = 0, --Tidefury Cove
[518] = 0, --Dreadmurk Shore
[536] = 0, --Addle's Stead
[537] = 0, --Fire Plume Ridge
[538] = 0, --Lakkari Tar Pits
[539] = 0, --Terror Run
[540] = 0, --The Slithering Scar
[541] = 0, --Marshal's Refuge
[542] = 0, --Fungal Rock
[543] = 0, --Golakka Hot Springs
[556] = 0, --The Loch
[576] = 0, --Beggar's Haunt
[596] = 0, --Kodo Graveyard
[597] = 0, --Ghost Walker Post
[598] = 0, --Sar'theris Strand
[599] = 0, --Thunder Axe Fortress
[600] = 0, --Bolgan's Hole
[602] = 0, --Mannoroc Coven
[603] = 0, --Sargeron
[604] = 0, --Magram Village
[606] = 0, --Gelkis Village
[607] = 0, --Valley of Spears
[608] = 0, --Nijel's Point
[609] = 0, --Kolkar Village
[616] = 0, --Hyjal
[618] = 1452, --Winterspring
[636] = 0, --Blackwolf River
[637] = 0, --Kodo Rock
[638] = 0, --Hidden Path
[639] = 0, --Spirit Rock
[640] = 0, --Shrine of the Dormant Flame
[656] = 0, --Lake Elune'ara
[657] = 0, --The Harborage
[676] = 0, --Outland
[696] = 0, --Craftsmen's Terrace
[697] = 0, --Tradesmen's Terrace
[698] = 0, --The Temple Gardens
[699] = 0, --Temple of Elune
[700] = 0, --Cenarion Enclave
[701] = 0, --Warrior's Terrace
[702] = 0, --Rut'theran Village
[716] = 0, --Ironband's Compound
[717] = 0, --The Stockade
[718] = 0, --Wailing Caverns
[719] = 0, --Blackfathom Deeps
[720] = 0, --Fray Island
[721] = 0, --Gnomeregan
[722] = 0, --Razorfen Downs
[736] = 0, --Ban'ethil Hollow
[796] = 0, --Scarlet Monastery
[797] = 0, --Jerod's Landing
[798] = 0, --Ridgepoint Tower
[799] = 0, --The Darkened Bank
[800] = 0, --Coldridge Pass
[801] = 0, --Chill Breeze Valley
[802] = 0, --Shimmer Ridge
[803] = 0, --Amberstill Ranch
[804] = 0, --The Tundrid Hills
[805] = 0, --South Gate Pass
[806] = 0, --South Gate Outpost
[807] = 0, --North Gate Pass
[808] = 0, --North Gate Outpost
[809] = 0, --Gates of Ironforge
[810] = 0, --Stillwater Pond
[811] = 0, --Nightmare Vale
[812] = 0, --Venomweb Vale
[813] = 0, --The Bulwark
[814] = 0, --Southfury River
[815] = 0, --Southfury River
[816] = 0, --Razormane Grounds
[817] = 0, --Skull Rock
[818] = 0, --Palemane Rock
[819] = 0, --Windfury Ridge
[820] = 0, --The Golden Plains
[821] = 0, --The Rolling Plains
[836] = 0, --Dun Algaz
[837] = 0, --Dun Algaz
[838] = 0, --North Gate Pass
[839] = 0, --South Gate Pass
[856] = 0, --Twilight Grove
[876] = 0, --GM Island
[878] = 0, --Southfury River
[879] = 0, --Southfury River
[880] = 0, --Thandol Span
[881] = 0, --Thandol Span
[896] = 0, --Purgation Isle
[916] = 0, --The Jansen Stead
[917] = 0, --The Dead Acre
[918] = 0, --The Molsen Farm
[919] = 0, --Stendel's Pond
[920] = 0, --The Dagger Hills
[921] = 0, --Demont's Place
[922] = 0, --The Dust Plains
[923] = 0, --Stonesplinter Valley
[924] = 0, --Valley of Kings
[925] = 0, --Algaz Station
[926] = 0, --Bucklebree Farm
[927] = 0, --The Shining Strand
[928] = 0, --North Tide's Hollow
[936] = 0, --Grizzlepaw Ridge
[956] = 0, --The Verdant Fields
[976] = 0, --Gadgetzan
[977] = 0, --Steamwheedle Port
[978] = 0, --Zul'Farrak
[979] = 0, --Sandsorrow Watch
[980] = 0, --Thistleshrub Valley
[981] = 0, --The Gaping Chasm
[982] = 0, --The Noxious Lair
[983] = 0, --Dunemaul Compound
[984] = 0, --Eastmoon Ruins
[985] = 0, --Waterspring Field
[986] = 0, --Zalashji's Den
[987] = 0, --Land's End Beach
[988] = 0, --Wavestrider Beach
[989] = 0, --Uldum
[990] = 0, --Valley of the Watchers
[991] = 0, --Gunstan's Post
[992] = 0, --Southmoon Ruins
[996] = 0, --Render's Camp
[997] = 0, --Render's Valley
[998] = 0, --Render's Rock
[999] = 0, --Stonewatch Tower
[1000] = 0, --Galardell Valley
[1001] = 0, --Lakeridge Highway
[1002] = 0, --Three Corners
[1016] = 0, --Direforge Hill
[1017] = 0, --Raptor Ridge
[1018] = 0, --Black Channel Marsh
[1019] = 0, --The Green Belt
[1020] = 0, --Mosshide Fen
[1021] = 0, --Thelgen Rock
[1022] = 0, --Bluegill Marsh
[1023] = 0, --Saltspray Glen
[1024] = 0, --Sundown Marsh
[1025] = 0, --The Green Belt
[1036] = 0, --Angerfang Encampment
[1037] = 0, --Grim Batol
[1038] = 0, --Dragonmaw Gates
[1039] = 0, --The Lost Fleet
[1056] = 0, --Darrow Hill
[1057] = 0, --Thoradin's Wall
[1076] = 0, --Webwinder Path
[1097] = 0, --The Hushed Bank
[1098] = 0, --Manor Mistmantle
[1099] = 0, --Camp Mojache
[1100] = 0, --Grimtotem Compound
[1101] = 0, --The Writhing Deep
[1102] = 0, --Wildwind Lake
[1103] = 0, --Gordunni Outpost
[1104] = 0, --Mok'Gordun
[1105] = 0, --Feral Scar Vale
[1106] = 0, --Frayfeather Highlands
[1107] = 0, --Idlewind Lake
[1108] = 0, --The Forgotten Coast
[1109] = 0, --East Pillar
[1110] = 0, --West Pillar
[1111] = 0, --Dream Bough
[1112] = 0, --Jademir Lake
[1113] = 0, --Oneiros
[1114] = 0, --Ruins of Ravenwind
[1115] = 0, --Rage Scar Hold
[1116] = 0, --Feathermoon Stronghold
[1117] = 0, --Ruins of Solarsal
[1119] = 0, --The Twin Colossals
[1120] = 0, --Sardor Isle
[1121] = 0, --Isle of Dread
[1136] = 0, --High Wilderness
[1137] = 0, --Lower Wilds
[1156] = 0, --Southern Barrens
[1157] = 0, --Southern Gold Road
[1176] = 0, --Zul'Farrak
[1216] = 0, --Timbermaw Hold
[1217] = 0, --Vanndir Encampment
[1219] = 0, --Legash Encampment
[1220] = 0, --Thalassian Base Camp
[1221] = 0, --Ruins of Eldarath
[1222] = 0, --Hetaera's Clutch
[1223] = 0, --Temple of Zin-Malor
[1224] = 0, --Bear's Head
[1225] = 0, --Ursolan
[1226] = 0, --Temple of Arkkoran
[1227] = 0, --Bay of Storms
[1228] = 0, --The Shattered Strand
[1229] = 0, --Tower of Eldara
[1230] = 0, --Jagged Reef
[1231] = 0, --Southridge Beach
[1232] = 0, --Ravencrest Monument
[1233] = 0, --Forlorn Ridge
[1234] = 0, --Lake Mennar
[1235] = 0, --Shadowsong Shrine
[1236] = 0, --Haldarr Encampment
[1237] = 0, --Valormok
[1256] = 0, --The Ruined Reaches
[1276] = 0, --The Talondeep Path
[1277] = 0, --The Talondeep Path
[1296] = 0, --Rocktusk Farm
[1297] = 0, --Jaggedswine Farm
[1316] = 0, --Razorfen Downs
[1336] = 0, --Lost Rigger Cove
[1337] = 0, --Uldaman
[1338] = 0, --Lordamere Lake
[1339] = 0, --Lordamere Lake
[1357] = 0, --Gallows' Corner
[1377] = 1451, --Silithus
[1397] = 0, --Emerald Forest
[1417] = 0, --Sunken Temple
[1437] = 0, --Dreadmaul Hold
[1438] = 0, --Nethergarde Keep
[1439] = 0, --Dreadmaul Post
[1440] = 0, --Serpent's Coil
[1441] = 0, --Altar of Storms
[1442] = 0, --Firewatch Ridge
[1443] = 0, --The Slag Pit
[1444] = 0, --The Sea of Cinders
[1445] = 0, --Blackrock Mountain
[1446] = 0, --Thorium Point
[1457] = 0, --Garrison Armory
[1477] = 0, --The Temple of Atal'Hakkar
[1497] = 1458, --Undercity
[1517] = 0, --Uldaman
[1518] = 0, --Not Used Deadmines
[1519] = 1453, --Stormwind City
[1537] = 1455, --Ironforge
[1557] = 0, --Splithoof Hold
[1577] = 0, --The Cape of Stranglethorn
[1578] = 0, --Southern Savage Coast
[1579] = 0, --Unused The Deadmines [002] = 0, --
[1580] = 0, --Unused Ironclad Cove [003] = 0, --
[1581] = 0, --The Deadmines
[1582] = 0, --Ironclad Cove
[1583] = 0, --Blackrock Spire
[1584] = 0, --Blackrock Depths
[1597] = 0, --Raptor Grounds UNUSED
[1598] = 0, --Grol'dom Farm UNUSED
[1599] = 0, --Mor'shan Base Camp
[1600] = 0, --Honor's Stand UNUSED
[1601] = 0, --Blackthorn Ridge UNUSED
[1602] = 0, --Bramblescar UNUSED
[1603] = 0, --Agama'gor UNUSED
[1617] = 0, --Valley of Heroes
[1637] = 1454, --Orgrimmar
[1638] = 1456, --Thunder Bluff
[1639] = 0, --Elder Rise
[1640] = 0, --Spirit Rise
[1641] = 0, --Hunter Rise
[1657] = 1457, --Darnassus
[1658] = 0, --Cenarion Enclave
[1659] = 0, --Craftsmen's Terrace
[1660] = 0, --Warrior's Terrace
[1661] = 0, --The Temple Gardens
[1662] = 0, --Tradesmen's Terrace
[1677] = 0, --Gavin's Naze
[1678] = 0, --Sofera's Naze
[1679] = 0, --Corrahn's Dagger
[1680] = 0, --The Headland
[1681] = 0, --Misty Shore
[1682] = 0, --Dandred's Fold
[1683] = 0, --Growless Cave
[1684] = 0, --Chillwind Point
[1697] = 0, --Raptor Grounds
[1698] = 0, --Bramblescar
[1699] = 0, --Thorn Hill
[1700] = 0, --Agama'gor
[1701] = 0, --Blackthorn Ridge
[1702] = 0, --Honor's Stand
[1703] = 0, --The Mor'shan Rampart
[1704] = 0, --Grol'dom Farm
[1717] = 0, --Razorfen Kraul
[1718] = 0, --The Great Lift
[1737] = 0, --Mistvale Valley
[1738] = 0, --Nek'mani Wellspring
[1739] = 0, --Bloodsail Compound
[1740] = 0, --Venture Co. Base Camp
[1741] = 0, --Gurubashi Arena
[1742] = 0, --Spirit Den
[1757] = 0, --The Crimson Veil
[1758] = 0, --The Riptide
[1759] = 0, --The Damsel's Luck
[1760] = 0, --Venture Co. Operations Center
[1761] = 0, --Deadwood Village
[1762] = 0, --Felpaw Village
[1763] = 0, --Jaedenar
[1764] = 0, --Bloodvenom River
[1765] = 0, --Bloodvenom Falls
[1766] = 0, --Shatter Scar Vale
[1767] = 0, --Irontree Woods
[1768] = 0, --Irontree Cavern
[1769] = 0, --Timbermaw Hold
[1770] = 0, --Shadow Hold
[1771] = 0, --Shrine of the Deceiver
[1777] = 0, --Itharius's Cave
[1778] = 0, --Sorrowmurk
[1779] = 0, --Draenil'dur Village
[1780] = 0, --Splinterspear Junction
[1797] = 0, --Stagalbog
[1798] = 0, --The Shifting Mire
[1817] = 0, --Stagalbog Cave
[1837] = 0, --Witherbark Caverns
[1857] = 0, --Thoradin's Wall
[1858] = 0, --Boulder'gor
[1877] = 0, --Valley of Fangs
[1878] = 0, --The Dustbowl
[1879] = 0, --Mirage Flats
[1880] = 0, --Featherbeard's Hovel
[1881] = 0, --Shindigger's Camp
[1882] = 0, --Plaguemist Ravine
[1883] = 0, --Valorwind Lake
[1884] = 0, --Agol'watha
[1885] = 0, --Hiri'watha
[1886] = 0, --The Creeping Ruin
[1887] = 0, --Bogen's Ledge
[1897] = 0, --The Maker's Terrace
[1898] = 0, --Dustwind Gulch
[1917] = 0, --Shaol'watha
[1937] = 0, --Noonshade Ruins
[1938] = 0, --Broken Pillar
[1939] = 0, --Abyssal Sands
[1940] = 0, --Southbreak Shore
[1941] = 0, --Caverns of Time
[1942] = 0, --The Marshlands
[1943] = 0, --Ironstone Plateau
[1957] = 0, --Blackchar Cave
[1958] = 0, --Tanner Camp
[1959] = 0, --Dustfire Valley
[1977] = 0, --Zul'Gurub
[1978] = 0, --Misty Reed Post
[1997] = 0, --Bloodvenom Post
[1998] = 0, --Talonbranch Glade
[2017] = 0, --Stratholme
[2037] = 0, --Quel'thalas
[2057] = 0, --Scholomance
[2077] = 0, --Twilight Vale
[2078] = 0, --Twilight Shore
[2079] = 0, --Alcaz Island
[2097] = 0, --Darkcloud Pinnacle
[2098] = 0, --Dawning Wood Catacombs
[2099] = 0, --Stonewatch Keep
[2100] = 0, --Maraudon
[2101] = 0, --Stoutlager Inn
[2102] = 0, --Thunderbrew Distillery
[2103] = 0, --Menethil Keep
[2104] = 0, --Deepwater Tavern
[2117] = 0, --Shadow Grave
[2118] = 0, --Brill Town Hall
[2119] = 0, --Gallows' End Tavern
[2137] = 0, --The Pools of Vision
[2138] = 0, --Dreadmist Den
[2157] = 0, --Bael'dun Keep
[2158] = 0, --Emberstrife's Den
[2159] = 0, --Onyxia's Lair
[2160] = 0, --Windshear Mine
[2161] = 0, --Roland's Doom
[2177] = 0, --Battle Ring
[2197] = 0, --The Pools of Vision
[2198] = 0, --Shadowbreak Ravine
[2217] = 0, --Broken Spear Village
[2237] = 0, --Whitereach Post
[2238] = 0, --Gornia
[2239] = 0, --Zane's Eye Crater
[2240] = 0, --Mirage Raceway
[2241] = 0, --Frostsaber Rock
[2242] = 0, --The Hidden Grove
[2243] = 0, --Timbermaw Post
[2244] = 0, --Winterfall Village
[2245] = 0, --Mazthoril
[2246] = 0, --Frostfire Hot Springs
[2247] = 0, --Ice Thistle Hills
[2248] = 0, --Dun Mandarr
[2249] = 0, --Frostwhisper Gorge
[2250] = 0, --Owl Wing Thicket
[2251] = 0, --Lake Kel'Theril
[2252] = 0, --The Ruins of Kel'Theril
[2253] = 0, --Starfall Village
[2254] = 0, --Ban'Thallow Barrow Den
[2255] = 0, --Everlook
[2256] = 0, --Darkwhisper Gorge
[2257] = 0, --Deeprun Tram
[2258] = 0, --The Fungal Vale
[2259] = 0, --The Marris Stead
[2260] = 0, --The Marris Stead
[2261] = 0, --The Undercroft
[2262] = 0, --Darrowshire
[2263] = 0, --Crown Guard Tower
[2264] = 0, --Corin's Crossing
[2265] = 0, --Scarlet Base Camp
[2266] = 0, --Tyr's Hand
[2267] = 0, --The Scarlet Basilica
[2268] = 0, --Light's Hope Chapel
[2269] = 0, --Browman Mill
[2270] = 0, --The Noxious Glade
[2271] = 0, --Eastwall Tower
[2272] = 0, --Northdale
[2273] = 0, --Zul'Mashar
[2274] = 0, --Mazra'Alor
[2275] = 0, --Northpass Tower
[2276] = 0, --Quel'Lithien Lodge
[2277] = 0, --Plaguewood
[2278] = 0, --Scourgehold
[2279] = 0, --Stratholme
[2280] = 0, --Stratholme
[2297] = 0, --Darrowmere Lake
[2298] = 0, --Caer Darrow
[2299] = 0, --Darrowmere Lake
[2300] = 0, --Caverns of Time
[2301] = 0, --Thistlefur Village
[2302] = 0, --The Quagmire
[2303] = 0, --Windbreak Canyon
[2317] = 0, --South Seas
[2318] = 0, --The Great Sea
[2319] = 0, --The Great Sea
[2320] = 0, --The Great Sea
[2321] = 0, --The Great Sea
[2322] = 0, --The Veiled Sea
[2323] = 0, --The Veiled Sea
[2324] = 0, --The Veiled Sea
[2325] = 0, --The Veiled Sea
[2326] = 0, --The Veiled Sea
[2337] = 0, --Razor Hill Barracks
[2338] = 0, --South Seas
[2339] = 0, --The Great Sea
[2357] = 0, --Bloodtooth Camp
[2358] = 0, --Forest Song
[2359] = 0, --Greenpaw Village
[2360] = 0, --Silverwing Outpost
[2361] = 0, --Nighthaven
[2362] = 0, --Shrine of Remulos
[2363] = 0, --Stormrage Barrow Dens
[2364] = 0, --The Great Sea
[2365] = 0, --The Great Sea
[2366] = 0, --The Black Morass
[2367] = 0, --Old Hillsbrad Foothills
[2368] = 0, --Tarren Mill
[2369] = 0, --Southshore
[2370] = 0, --Durnholde Keep
[2371] = 0, --Dun Garok
[2372] = 0, --Hillsbrad Fields
[2373] = 0, --Eastern Strand
[2374] = 0, --Nethander Stead
[2375] = 0, --Darrow Hill
[2376] = 0, --Southpoint Tower
[2377] = 0, --Thoradin's Wall
[2378] = 0, --Western Strand
[2379] = 0, --Azurelode Mine
[2397] = 0, --The Great Sea