You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.7 KiB
78 lines
1.7 KiB
-- ----------------------------------------------------------------------------
|
|
-- AddOn namespace.
|
|
-- ----------------------------------------------------------------------------
|
|
local AddOnFolderName, private = ...
|
|
|
|
-- ----------------------------------------------------------------------------
|
|
-- Constants
|
|
-- ----------------------------------------------------------------------------
|
|
local DefaultPreferences = {
|
|
locale = {
|
|
npcNames = {},
|
|
questNames = {},
|
|
},
|
|
profile = {
|
|
alert = {
|
|
output = {
|
|
sink20OutputSink = "None",
|
|
},
|
|
screenFlash = {
|
|
color = {
|
|
r = 1,
|
|
g = 1,
|
|
b = 1,
|
|
a = 1,
|
|
},
|
|
isEnabled = true,
|
|
texture = "Blizzard Low Health",
|
|
},
|
|
sound = {
|
|
channel = "Master",
|
|
ignoreMute = false,
|
|
isEnabled = true,
|
|
sharedMediaNames = {
|
|
["NPCScan Chimes"] = true,
|
|
["NPCScan Ogre War Drums"] = true,
|
|
},
|
|
}
|
|
},
|
|
blacklist = {
|
|
mapIDs = {},
|
|
npcIDs = {},
|
|
},
|
|
detection = {
|
|
achievementIDs = {},
|
|
continentIDs = {},
|
|
ignoreCompletedAchievementCriteria = true,
|
|
ignoreCompletedQuestObjectives = true,
|
|
ignoreDeadNPCs = true,
|
|
ignoreMinimap = false,
|
|
ignoreWorldMap = false,
|
|
intervalSeconds = 600,
|
|
raidMarker = {
|
|
add = true,
|
|
addInGroup = false,
|
|
},
|
|
rares = true,
|
|
tameables = true,
|
|
userDefined = true,
|
|
whileOnTaxi = false,
|
|
},
|
|
targetButtonGroup = {
|
|
durationSeconds = 60,
|
|
hideDuringCombat = false,
|
|
isEnabled = true,
|
|
point = "TOPRIGHT",
|
|
scale = 1,
|
|
x = -300,
|
|
y = -150,
|
|
},
|
|
userDefined = {
|
|
continentNPCs = {},
|
|
mapNPCs = {},
|
|
npcIDs = {},
|
|
},
|
|
},
|
|
}
|
|
|
|
private.DefaultPreferences = DefaultPreferences
|
|
|