├── Localization.lua ├── img ├── bar.tga ├── Arrow.blp ├── Icon-1.tga ├── Icon-3.tga ├── Icon.tga ├── handin.tga ├── pickup.tga └── RedIcon.tga ├── .gitattributes ├── OptionsPanel.lua ├── QuestAccepts.lua ├── lib ├── CallbackHandler-1.0 │ ├── CallbackHandler-1.0.xml │ └── CallbackHandler-1.0.lua ├── HereBeDragons │ ├── CallbackHandler-1.0 │ │ ├── CallbackHandler-1.0.xml │ │ └── CallbackHandler-1.0.lua │ ├── CHANGES.txt │ ├── LibStub │ │ ├── LibStub.toc │ │ └── LibStub.lua │ ├── HereBeDragons.toc │ ├── HereBeDragons-2.0.lua │ ├── HereBeDragons-Pins-1.0.lua │ └── HereBeDragons-Pins-2.0.lua ├── LibStub │ ├── LibStub.toc │ └── LibStub.lua └── HereBeDragons-1.0 │ └── HereBeDragons-1.0.toc ├── AAP-Classic.toc ├── Core.lua ├── Arrow.lua ├── QuestList.lua ├── QuestListFunctions.lua ├── QuestFunctions.lua ├── ZoneOrders.lua └── DBfunctions.lua /Localization.lua: -------------------------------------------------------------------------------- 1 | AAPClassic.Locale = {} -------------------------------------------------------------------------------- /img/bar.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zyrrael/AAP-Classic/HEAD/img/bar.tga -------------------------------------------------------------------------------- /img/Arrow.blp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zyrrael/AAP-Classic/HEAD/img/Arrow.blp -------------------------------------------------------------------------------- /img/Icon-1.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zyrrael/AAP-Classic/HEAD/img/Icon-1.tga -------------------------------------------------------------------------------- /img/Icon-3.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zyrrael/AAP-Classic/HEAD/img/Icon-3.tga -------------------------------------------------------------------------------- /img/Icon.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zyrrael/AAP-Classic/HEAD/img/Icon.tga -------------------------------------------------------------------------------- /img/handin.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zyrrael/AAP-Classic/HEAD/img/handin.tga -------------------------------------------------------------------------------- /img/pickup.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zyrrael/AAP-Classic/HEAD/img/pickup.tga -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /img/RedIcon.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zyrrael/AAP-Classic/HEAD/img/RedIcon.tga -------------------------------------------------------------------------------- /OptionsPanel.lua: -------------------------------------------------------------------------------- 1 | if (tonumber(string.sub(AAPClassic.Build, 1,1)) > 2) then 2 | --return 3 | end 4 | AAPClassic.Panel = {} -------------------------------------------------------------------------------- /QuestAccepts.lua: -------------------------------------------------------------------------------- 1 | if (tonumber(string.sub(AAPClassic.Build, 1,1)) > 2) then 2 | --return 3 | end 4 | AAPClassic.QL = {} 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /lib/CallbackHandler-1.0/CallbackHandler-1.0.xml: -------------------------------------------------------------------------------- 1 | 3 |