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.
29 lines
1.7 KiB
29 lines
1.7 KiB
local L = DBM_GUI_L
|
|
|
|
local extraFeaturesPanel = DBM_GUI.Cat_General:CreateNewPanel(L.Panel_ExtraFeatures, "option")
|
|
|
|
local soundAlertsArea = extraFeaturesPanel:CreateArea(L.Area_SoundAlerts)
|
|
soundAlertsArea:CreateCheckButton(L.LFDEnhance, true, nil, "LFDEnhance")
|
|
soundAlertsArea:CreateCheckButton(L.WorldBossNearAlert, true, nil, "WorldBossNearAlert")
|
|
soundAlertsArea:CreateCheckButton(L.RLReadyCheckSound, true, nil, "RLReadyCheckSound")
|
|
soundAlertsArea:CreateCheckButton(L.AFKHealthWarning, true, nil, "AFKHealthWarning2")
|
|
soundAlertsArea:CreateCheckButton(L.AutoReplySound, true, nil, "AutoReplySound")
|
|
|
|
local generaltimeroptions = extraFeaturesPanel:CreateArea(L.TimerGeneral)
|
|
generaltimeroptions:CreateCheckButton(L.SKT_Enabled, true, nil, "AlwaysShowSpeedKillTimer2")
|
|
generaltimeroptions:CreateCheckButton(L.ShowRespawn, true, nil, "ShowRespawn")
|
|
generaltimeroptions:CreateCheckButton(L.ShowQueuePop, true, nil, "ShowQueuePop")
|
|
generaltimeroptions:CreateCheckButton(L.ShowBerserkWarnings, true, nil, "ShowBerserkWarnings")
|
|
|
|
if _G["oRA3Frame"] then
|
|
local thirdPartyArea = extraFeaturesPanel:CreateArea(L.Area_3rdParty)
|
|
thirdPartyArea:CreateCheckButton(L.oRA3AnnounceConsumables, true, nil, "oRA3AnnounceConsumables")
|
|
end
|
|
|
|
local inviteArea = extraFeaturesPanel:CreateArea(L.Area_Invite)
|
|
inviteArea:CreateCheckButton(L.AutoAcceptFriendInvite, true, nil, "AutoAcceptFriendInvite")
|
|
inviteArea:CreateCheckButton(L.AutoAcceptGuildInvite, true, nil, "AutoAcceptGuildInvite")
|
|
|
|
local advancedArea = extraFeaturesPanel:CreateArea(L.Area_Advanced)
|
|
advancedArea:CreateCheckButton(L.FakeBW, true, nil, "FakeBWVersion")
|
|
advancedArea:CreateCheckButton(L.AITimer, true, nil, "AITimer")
|
|
|