-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathDefaults.lua
More file actions
79 lines (79 loc) · 2.19 KB
/
Copy pathDefaults.lua
File metadata and controls
79 lines (79 loc) · 2.19 KB
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
local addonName, privateTable = ...
privateTable.interface10 = select(4, GetBuildInfo()) >= 100000
privateTable.defaults = {
profile = {
enabled = true,
admin = false,
all = 2,
trivial = false,
completeonly = false,
lootreward = 1,
tournament = 2,
darkmoonteleport = true,
todarkmoon = true,
darkmoonautostart = true,
showrewardtext = true,
version = C_AddOns.GetAddOnMetadata(addonName, "Version"),
autoequip = false,
togglekey = 4,
debug = false,
questlevel = true,
watchlevel = false,
questshare = false,
armor = {},
armorType = -1,
weapon = {},
stat = {},
secondary = {},
relictoggle = true,
artifactpowertoggle = true,
reviveBattlePet = false,
covenantswapgossipcompletion = false,
unsafe_item_wipe = false,
sell_junk = 2,
auto_repair = true,
skip_cinematics = 1,
skip_movies = 1,
map_coords = true,
minimap_coords = false,
IGNORED_NPC = {
["87391"] = "fate-twister-seress",
["88570"] = "Fate-Twister Tiklal",
["15077"] = "Riggle Bassbait",
["119388"] = "Chieftain Hatuun",
["127037"] = "Nabiru",
["142063"] = "Tezran",
["141584"] = "Zurvan", --seals of fate
["111243"] = "Archmage Lan'dalock", --seals of fate
},
IGNORED_QUEST = {
["80442"] = "Aid the Sunreavers Onslaught (daily)",
["81749"] = "Aid the Kirin Tor Offensive",
["80443"] = "Aid the Kirin Tor Offensive (daily)",
["80433"] = "Aid the August Celestials",
["80430"] = "Aid the August Celestials",
["80441"] = "Aid the Order of the Cloud Serpent",
["80431"] = "Aid the August Celestials",
["80429"] = "Aid the August Celestials",
["81748"] = "Aid the Sunreavers Onslaught",
["80439"] = "Aid the Alliance",
["80320"] = "Aid the Klaxxi",
["83793"] = "Aid the Jinyu",
["80427"] = "Aid the Golden Lotus",
["80426"] = "Aid the Shado-Pan",
["80444"] = "Aid the Anglers",
["80438"] = "Aid the Horde",
["83795"] = "Aid the Hozen",
},
WANTED_NPC = {
["167881"] = "Ta'lan the Antiquary",
["167880"] = "Finder Ta'sul",
["158653"] = "Prince Renethal",
},
WANTED_QUESTS = {
["6942"] = "Frostwolf Soldier's Medal",
["6943"] = "Frostwolf Commander's Medal",
["6941"] = "Frostwolf Lieutenant's Medal",
}
}
}