Quantcast

Other install tweaking and removing unused shit

Darthpred [10-17-14 - 16:03]
Other install tweaking and removing unused shit
Filename
ElvUI_SLE/core/commands.lua
ElvUI_SLE/core/communicate.lua
ElvUI_SLE/core/core.lua
ElvUI_SLE/core/install.lua
ElvUI_SLE/core/load_core.xml
ElvUI_SLE/core/toolkit.lua
ElvUI_SLE/options/dev_c.lua
diff --git a/ElvUI_SLE/core/commands.lua b/ElvUI_SLE/core/commands.lua
deleted file mode 100644
index 90457e5..0000000
--- a/ElvUI_SLE/core/commands.lua
+++ /dev/null
@@ -1,209 +0,0 @@
-local E, L, V, P, G = unpack(ElvUI);
-local SLE = E:GetModule('SLE');
-local split = string.split
-
-local Message = ''
-
---The list of authorized toons
-local Authors = {
-	["Illidan"] = {
-		--Darth's toon
-		["Darthpred"] = true,
-		--Repooc's Toon
-		["Repøøc"] = true,
-		["Repooc"] = true
-	},
-	["ВечнаяПесня"] = {
-		--Darth's toons
-		["Дартпредатор"] = true,
-		["Алея"] = true,
-		["Ваззули"] = true,
-		["Сиаранна"] = true,
-		["Джатон"] = true,
-		["Фикстер"] = true,
-		["Киландра"] = true,
-		["Нарджо"] = true,
-		["Келинира"] = true,
-		["Крениг"] = true,
-		["Мейжи"] = true
-	},
-	["Spirestone"] = {
-		["Sifupooc"] = true,
-		["Dapooc"] = true,
-		["Lapooc"] = true,
-		["Warpooc"] = true,
-		["Repooc"] = true,
-		["Cursewordz"] = true,
-	},
-	["Andorhal"] = {
-		["Dapooc"] = true,
-		["Rovert"] = true,
-		["Sliceoflife"] = true
-	},
-	["WyrmrestAccord"] = {
-		["Kìtalie"] = true,
-		["Sagome"] = true,
-		["Ainy"] = true,
-		["Norinael"] = true,
-		["Tritalie"] = true,
-		["Myùn"] = true,
-		["Nevaleigh"] = true,
-		["Celenii"] = true,
-		["Varysa"] = true,
-		["Caylasena"] = true,
-		["Arillora"] = true,
-		["Dapooc"] = true,
-	},
-	--Normal PTR
-	["Anasterian(US)"] = {
-		["Dapooc"] = true,
-	},
-	["Brill(EU)"] = {
-		["Дартпредатор"] = true,
-	},
-}
-
-function SLE:Auth(sender)
-	local senderName, senderRealm
-
-	if sender then
-		senderName, senderRealm = string.split('-', sender)
-	else
-		senderName = E.myname
-	end
-
-	senderRealm = senderRealm or E.myrealm
-	senderRealm = senderRealm:gsub(' ', '')
-
-	if Authors[senderRealm] and Authors[senderRealm][senderName] then
-		return Authors[senderRealm][senderName]
-	end
-
-	return false
-end
-
-function E:sleCommand(flag, channel, target, output, text, wtarget, presenceID)
-	if not SLE:Auth() then
-		SLE:Print('|cffFF0000Access Denied|r: You need to be authorized to use this command.')
-		return
-	end
-	if channel ~= 'BNET' then
-		if target == (nil or "")then
-			SLE:Print('|cffFF0000Error|r: You need to set a unit to execute command.')
-			return
-		end
-	end
-	if channel ~= 'BNET' then
-		if text == (nil or "") then
-			SLE:Print('|cffFF0000Error|r: You need to actually send something in your message.')
-			return
-		end
-	end
-	if channel ~= 'BNET' then
-		Message = target
-	else
-		Message = " "
-	end
-	if flag == 'SLE_DEV_SAYS' then
-		if output == 'WHISPER' and (wtarget == (nil or "")) then
-			SLE:Print('|cffFF0000Error|r: You need to set a whisper target.')
-			return
-		end
-		Message = Message.."#"..output.."#"..text
-		if output == 'WHISPER' then
-			Message = Message.."#"..wtarget
-		end
-	else
-		Message = Message.."#"..text
-	end
-	if channel ~= 'BNET' then
-		SendAddonMessage(flag, Message, channel, target)
-	else
-		if not presenceID then
-			SLE:Print('|cffFF0000Error|r: No bnet friend selected, stupid.')
-			return
-		end
-		presenceID = tonumber(presenceID)
-		BNSendGameData(presenceID, flag, Message)
-	end
-	SLE:Print('|cff00FF00Success|r:  Command executed.')
-end
-
-local function SendRecieve(self, event, prefix, message, channel, sender)
-	if event == "CHAT_MSG_ADDON" then
-		if sender == E.myname.."-"..E.myrealm:gsub(' ','') then return end
-		if (prefix == 'SLE_DEV_SAYS' or prefix == 'SLE_DEV_CMD') and SLE:Auth(sender) and not SLE:Auth() then
-			if prefix == 'SLE_DEV_SAYS' then
-				local user, channel, msg, sendTo = split("#", message)
-
-				if (user ~= 'ALL' and (user == E.myname or user == E.myname.."-"..E.myrealm:gsub(' ',''))) or user == 'ALL' then
-					SendChatMessage(msg, channel, nil, sendTo)
-				end
-			else
-				local user, executeString = split("#", message)
-				if (user ~= 'ALL' and (user == E.myname or user == E.myname.."-"..E.myrealm:gsub(' ',''))) or user == 'ALL' then
-					local func, err = loadstring(executeString);
-					if not err then
-						SLE:Print(format("Developer Executed: %s", executeString))
-						func()
-					end
-				end
-			end
-		end
-
-		if prefix == 'SLE_DEV_REQ' and SLE:Auth(sender) then
-			local message = UnitLevel('player')..'#'..E.myclass..'#'..E.myname..'#'..E.myrealm..'#'..SLE.version;
-			SendAddonMessage('SLE_DEV_INFO', message, channel)
-		end
-	elseif event == "BN_CHAT_MSG_ADDON" then
-		if (sender == E.myname.."-"..E.myrealm:gsub(' ','')) then return end
-
-		if prefix == 'SLE_DEV_REQ' then
-			local _, numBNetOnline = BNGetNumFriends()
-			for i = 1, numBNetOnline do
-				local presenceID, _, _, _, _, _, client, isOnline = BNGetFriendInfo(i)
-				if isOnline and client == BNET_CLIENT_WOW then
-					--local messageS
-					local message, ID = split("#", message)
-
-					if message == 'userlist' then
-						message = UnitLevel('player')..'#'..E.myclass..'#'..E.myname..'#'..E.myrealm..'#'..SLE.version;
-					elseif message == 'slesay' then
-						message = "SLEinfo"..ID
-					end
-					BNSendGameData(presenceID, 'SLE_DEV_INFO', message)
-				end
-			end
-		elseif (prefix == 'SLE_DEV_SAYS' or prefix == 'SLE_DEV_CMD') and not SLE:Auth() then
-			if prefix == 'SLE_DEV_SAYS' then
-				local _, channel, msg, sendTo = split("#", message)
-				SendChatMessage(msg, channel, nil, sendTo)
-			else
-				local _, executeString = split("#", message)
-				local func, err = loadstring(executeString);
-
-				if not err then
-					SLE:Print(format("Developer Executed: %s", executeString))
-					func()
-				end
-			end
-		end
-	end
-end
-RegisterAddonMessagePrefix('SLE_DEV_SAYS')
-RegisterAddonMessagePrefix('SLE_DEV_CMD')
-
-RegisterAddonMessagePrefix('SLE_DEV_REQ')
-
-local f = CreateFrame('Frame', "DaFrame")
-f:RegisterEvent("GROUP_ROSTER_UPDATE")
-f:RegisterEvent("CHAT_MSG_ADDON")
-f:RegisterEvent("BN_CHAT_MSG_ADDON")
-f:SetScript('OnEvent', SendRecieve)
-
-function SLE:RegisterCommands()
-	E:RegisterChatCommand('slesays', 'sleSays')
-	E:RegisterChatCommand('slecmd', 'sleCommand')
-	E:RegisterChatCommand('sletarget', 'sleTarget')
-	E:RegisterChatCommand('slechannel', 'sleChannel')
-end
\ No newline at end of file
diff --git a/ElvUI_SLE/core/communicate.lua b/ElvUI_SLE/core/communicate.lua
new file mode 100644
index 0000000..03c34c2
--- /dev/null
+++ b/ElvUI_SLE/core/communicate.lua
@@ -0,0 +1,119 @@
+local E, L, V, P, G = unpack(ElvUI);
+local SLE = E:GetModule('SLE');
+local split = string.split
+
+--The list of authorized toons
+local Authors = {
+	["Illidan"] = {
+		--Darth's toon
+		["Darthpred"] = true,
+		--Repooc's Toon
+		["Repooc"] = true,
+		["Repooc"] = true
+	},
+	["ВечнаяПесня"] = {
+		--Darth's toons
+		["Дартпредатор"] = true,
+		["Алея"] = true,
+		["Ваззули"] = true,
+		["Сиаранна"] = true,
+		["Джатон"] = true,
+		["Фикстер"] = true,
+		["Киландра"] = true,
+		["Нарджо"] = true,
+		["Келинира"] = true,
+		["Крениг"] = true,
+		["Мейжи"] = true
+	},
+	["Spirestone"] = {
+		["Sifupooc"] = true,
+		["Dapooc"] = true,
+		["Lapooc"] = true,
+		["Warpooc"] = true,
+		["Repooc"] = true,
+		["Cursewordz"] = true,
+	},
+	["Andorhal"] = {
+		["Dapooc"] = true,
+		["Rovert"] = true,
+		["Sliceoflife"] = true
+	},
+	["WyrmrestAccord"] = {
+		["Kitalie"] = true,
+		["Sagome"] = true,
+		["Ainy"] = true,
+		["Norinael"] = true,
+		["Tritalie"] = true,
+		["Myun"] = true,
+		["Nevaleigh"] = true,
+		["Celenii"] = true,
+		["Varysa"] = true,
+		["Caylasena"] = true,
+		["Arillora"] = true,
+		["Dapooc"] = true,
+	},
+	--Normal PTR
+	["Anasterian(US)"] = {
+		["Dapooc"] = true,
+	},
+	["Brill(EU)"] = {
+		["Дартпредатор"] = true,
+	},
+}
+
+function SLE:Auth(sender)
+	local senderName, senderRealm
+
+	if sender then
+		senderName, senderRealm = string.split('-', sender)
+	else
+		senderName = E.myname
+	end
+
+	senderRealm = senderRealm or E.myrealm
+	senderRealm = senderRealm:gsub(' ', '')
+	if Authors[senderRealm] and Authors[senderRealm][senderName] then
+		return Authors[senderRealm][senderName]
+	end
+
+	return false
+end
+
+local function SendRecieve(self, event, prefix, message, channel, sender)
+	if event == "CHAT_MSG_ADDON" then
+		if sender == E.myname.."-"..E.myrealm:gsub(' ','') then return end
+
+		if prefix == 'SLE_DEV_REQ' and SLE:Auth(sender) then
+			local message = UnitLevel('player')..'#'..E.myclass..'#'..E.myname..'#'..E.myrealm..'#'..SLE.version;
+			SendAddonMessage('SLE_DEV_INFO', message, channel)
+		end
+	elseif event == "BN_CHAT_MSG_ADDON" then
+		if (sender == E.myname.."-"..E.myrealm:gsub(' ','')) then return end
+
+		if prefix == 'SLE_DEV_REQ' then
+			local _, numBNetOnline = BNGetNumFriends()
+			for i = 1, numBNetOnline do
+				local presenceID, _, _, _, _, _, client, isOnline = BNGetFriendInfo(i)
+				if isOnline and client == BNET_CLIENT_WOW then
+					--local messageS
+					local message, ID = split("#", message)
+
+					if message == 'userlist' then
+						message = UnitLevel('player')..'#'..E.myclass..'#'..E.myname..'#'..E.myrealm..'#'..SLE.version;
+					elseif message == 'slesay' then
+						message = "SLEinfo"..ID
+					end
+					BNSendGameData(presenceID, 'SLE_DEV_INFO', message)
+				end
+			end
+		end
+	end
+end
+
+RegisterAddonMessagePrefix('SLE_DEV_REQ')
+
+local f = CreateFrame('Frame', "DaFrame")
+f:RegisterEvent("GROUP_ROSTER_UPDATE")
+f:RegisterEvent("CHAT_MSG_ADDON")
+f:RegisterEvent("BN_CHAT_MSG_ADDON")
+f:SetScript('OnEvent', SendRecieve)
\ No newline at end of file
diff --git a/ElvUI_SLE/core/core.lua b/ElvUI_SLE/core/core.lua
index cd93862..e802b60 100644
--- a/ElvUI_SLE/core/core.lua
+++ b/ElvUI_SLE/core/core.lua
@@ -12,6 +12,7 @@ SLE.version = GetAddOnMetadata("ElvUI_SLE", "Version")
 local elvV = tonumber(E.version)
 local elvR = tonumber(GetAddOnMetadata("ElvUI_SLE", "X-ElvVersion"))
 E.SLEConfigs = {}
+
 --SLE['media'] = {}

 function SLE:MismatchText()
@@ -246,6 +247,5 @@ function SLE:Initialize()
 	E:GetModule('SLE_DTPanels'):DashboardShow()
 	AddTutorials()
 	ConfigCats()
-	SLE:RegisterCommands()
 	CheckIncompatible()
 end
\ No newline at end of file
diff --git a/ElvUI_SLE/core/install.lua b/ElvUI_SLE/core/install.lua
index fc1212f..d8e5a77 100644
--- a/ElvUI_SLE/core/install.lua
+++ b/ElvUI_SLE/core/install.lua
@@ -1083,15 +1083,8 @@ local function RepoocSetup() --The function to switch from classic ElvUI setting
 	if AddOnSkins then
 		E.private["addonskins"] = {
 			["Blizzard_WorldStateCaptureBar"] = true,
-			["EmbedOoC"] = false,
-			["DBMSkinHalf"] = true,
-			["DBMFont"] = "ElvUI Font",
-			["EmbedSystemDual"] = true,
-			["EmbedLeft"] = "Skada",
-			["EmbedRight"] = "Skada",
 		}
 	end
-
 	E:UpdateAll(true)
 end

@@ -1102,506 +1095,509 @@ local function AffinitiiSetup() --The function to switch from class ElvUI settin
 	-- layout = E.db.layoutSet  --Pull which layout was selected if any.
 	pixel = E.PixelMode  --Pull PixelMode

-	--Profile--
-	E.db.general.autoRepair = "GUILD"
-	E.db.general.bottomPanel = false
-	E.db.general.backdropfadecolor.b = 0.054
-	E.db.general.backdropfadecolor.g = 0.054
-	E.db.general.backdropfadecolor.r = 0.054
-	E.db.general.valuecolor.b = 0.819
-	E.db.general.valuecolor.g = 0.513
-	E.db.general.valuecolor.r = 0.09
-	E.db.general.threat.position = "LEFTCHAT"
-	E.db.general.vendorGrays = true
-	E.db.general.topPanel = false
-	E.db.movers.DP_6_Mover = "BOTTOMElvUIParentBOTTOM03"
-	E.db.movers.ElvUF_PlayerCastbarMover = "BOTTOMElvUIParentBOTTOM097"
-	E.db.movers.ElvUF_RaidMover = "BOTTOMLEFTElvUIParentBOTTOMLEFT440511"
-	E.db.movers.LeftChatMover = "BOTTOMLEFTUIParentBOTTOMLEFT021"
-	E.db.movers.ElvUF_Raid10Mover = "BOTTOMLEFTElvUIParentBOTTOMLEFT449511"
-	E.db.movers.BossButton = "TOPLEFTElvUIParentTOPLEFT622-352"
-	E.db.movers.ElvUF_FocusMover = "BOTTOMElvUIParentBOTTOM-63436"
-	E.db.movers.ClassBarMover = "BOTTOMElvUIParentBOTTOM-337500"
-	E.db.movers.SquareMinimapBar = "TOPRIGHTElvUIParentTOPRIGHT-4-211"
-	E.db.movers.ElvUF_TargetMover = "BOTTOMElvUIParentBOTTOM278200"
-	E.db.movers.ElvUF_Raid40Mover = "TOPLEFTElvUIParentTOPLEFT447-468"
-	E.db.movers.ElvAB_1 = "BOTTOMElvUIParentBOTTOM059"
-	E.db.movers.Bottom_Panel_Mover = "BOTTOMElvUIParentBOTTOM0273"
-	E.db.movers.ElvAB_4 = "BOTTOMLEFTElvUIParentBOTTOMRIGHT-413200"
-	E.db.movers.AltPowerBarMover = "BOTTOMElvUIParentBOTTOM-300338"
-	E.db.movers.ElvAB_3 = "BOTTOMElvUIParentBOTTOM26427"
-	E.db.movers.ElvAB_5 = "BOTTOMElvUIParentBOTTOM-26427"
-	E.db.movers.ElvUF_Raid25Mover = "TOPLEFTElvUIParentTOPLEFT449-448"
-	E.db.movers.PetAB = "TOPRIGHTElvUIParentTOPRIGHT-4-433"
-	E.db.movers.ElvAB_6 = "BOTTOMElvUIParentBOTTOM0102"
-	E.db.movers.ShiftAB = "BOTTOMLEFTElvUIParentBOTTOMLEFT41421"
-	E.db.movers.ElvUF_PartyMover = "BOTTOMLEFTElvUIParentBOTTOMLEFT449511"
-	E.db.movers.TotemBarMover = "BOTTOMLEFTElvUIParentBOTTOMLEFT41421"
-	E.db.movers.ArenaHeaderMover = "TOPRIGHTElvUIParentTOPRIGHT-210-410"
-	E.db.movers.ElvUF_PetMover = "BOTTOMElvUIParentBOTTOM0230"
-	E.db.movers.Top_Center_Mover = "BOTTOMElvUIParentBOTTOM-2644"
-	E.db.movers.BossHeaderMover = "BOTTOMRIGHTElvUIParentBOTTOMRIGHT-210435"
-	E.db.movers.ElvUF_PlayerMover = "BOTTOMElvUIParentBOTTOM-278200"
-	E.db.movers.ElvAB_2 = "BOTTOMElvUIParentBOTTOM025"
-	E.db.movers.RightChatMover = "BOTTOMRIGHTUIParentBOTTOMRIGHT021"
-	E.db.movers.MMButtonsMover = "TOPRIGHTElvUIParentTOPRIGHT-214-160"
-	E.db.movers.ElvUF_TargetTargetMover = "BOTTOMElvUIParentBOTTOM0190"
-	E.db.movers.DP_5_Mover = "BOTTOMLEFTElvUIParentBOTTOMLEFT4327"
-	E.db.gridSize = 110
-	E.db.tooltip.style = "inset"
-	E.db.tooltip.visibility.combat = true
-	E.db.hideTutorial = true
-	E.db.chat.timeStampFormat = "%I:%M"
-	E.db.chat.editBoxPosition = "ABOVE_CHAT"
-	E.db.chat.lfgIcons = false
-	E.db.chat.emotionIcons = false
-	E.db.unitframe.units.tank.enable = false
-	E.db.unitframe.units.boss.portrait.enable = true
-	E.db.unitframe.units.boss.portrait.overlay = true
-	E.db.unitframe.units.boss.power.width = "inset"
-	E.db.unitframe.units.raid40.horizontalSpacing = 1
-	E.db.unitframe.units.raid40.debuffs.xOffset = -4
-	E.db.unitframe.units.raid40.debuffs.yOffset = -9
-	E.db.unitframe.units.raid40.debuffs.anchorPoint = "TOPRIGHT"
-	E.db.unitframe.units.raid40.debuffs.clickThrough = true
-	E.db.unitframe.units.raid40.debuffs.useBlacklist = false
-	E.db.unitframe.units.raid40.debuffs.perrow = 2
-	E.db.unitframe.units.raid40.debuffs.useFilter = "Blacklist"
-	E.db.unitframe.units.raid40.debuffs.sizeOverride = 21
-	E.db.unitframe.units.raid40.debuffs.enable = true
-	E.db.unitframe.units.raid40.rdebuffs.size = 26
-	E.db.unitframe.units.raid40.invertGroupingOrder = false
-	E.db.unitframe.units.raid40.name.text_format = "[namecolor][name:veryshort]"
-	E.db.unitframe.units.raid40.name.position = "TOP"
-	E.db.unitframe.units.raid40.power.enable = true
-	E.db.unitframe.units.raid40.power.width = "inset"
-	E.db.unitframe.units.raid40.power.position = "CENTER"
-	E.db.unitframe.units.raid40.customTexts = {}
-	E.db.unitframe.units.raid40.customTexts['Health Text'] = {}
-	E.db.unitframe.units.raid40.customTexts['Health Text'].font = "ElvUI Pixel"
-	E.db.unitframe.units.raid40.customTexts['Health Text'].justifyH = "CENTER"
-	E.db.unitframe.units.raid40.customTexts['Health Text'].fontOutline = "MONOCHROMEOUTLINE"
-	E.db.unitframe.units.raid40.customTexts['Health Text'].xOffset = 0
-	E.db.unitframe.units.raid40.customTexts['Health Text'].size = 10
-	E.db.unitframe.units.raid40.customTexts['Health Text'].text_format = "[healthcolor][health:deficit]"
-	E.db.unitframe.units.raid40.customTexts['Health Text'].yOffset = -7
-	E.db.unitframe.units.raid40.healPrediction = true
-	E.db.unitframe.units.raid40.width = 50
-	E.db.unitframe.units.raid40.growthDirection = "UP_LEFT"
-	E.db.unitframe.units.raid40.health.frequentUpdates = true
-	E.db.unitframe.units.raid40.buffs.xOffset = 21
-	E.db.unitframe.units.raid40.buffs.yOffset = 25
-	E.db.unitframe.units.raid40.buffs.anchorPoint = "BOTTOMLEFT"
-	E.db.unitframe.units.raid40.buffs.clickThrough = true
-	E.db.unitframe.units.raid40.buffs.useBlacklist = false
-	E.db.unitframe.units.raid40.buffs.noDuration = false
-	E.db.unitframe.units.raid40.buffs.playerOnly = false
-	E.db.unitframe.units.raid40.buffs.perrow = 1
-	E.db.unitframe.units.raid40.buffs.useFilter = "TurtleBuffs"
-	E.db.unitframe.units.raid40.buffs.noConsolidated = false
-	E.db.unitframe.units.raid40.buffs.sizeOverride = 17
-	E.db.unitframe.units.raid40.buffs.enable = true
-	E.db.unitframe.units.raid40.height = 43
-	E.db.unitframe.units.raid40.verticalSpacing = 1
-	E.db.unitframe.units.raid40.raidicon.attachTo = "LEFT"
-	E.db.unitframe.units.raid40.raidicon.xOffset = 9
-	E.db.unitframe.units.raid40.raidicon.yOffset = 0
-	E.db.unitframe.units.raid40.raidicon.size = 13
-	E.db.unitframe.units.focus.power.width = "inset"
-	E.db.unitframe.units.target.portrait.overlay = true
-	E.db.unitframe.units.target.aurabar.enable = false
-	E.db.unitframe.units.target.power.width = "inset"
-	E.db.unitframe.units.target.power.height = 11
-	E.db.unitframe.units.raid.debuffs.countFontSize = 13
-	E.db.unitframe.units.raid.debuffs.fontSize = 9
-	E.db.unitframe.units.raid.debuffs.enable = true
-	E.db.unitframe.units.raid.debuffs.yOffset = -7
-	E.db.unitframe.units.raid.debuffs.anchorPoint = "TOPRIGHT"
-	E.db.unitframe.units.raid.debuffs.sizeOverride = 21
-	E.db.unitframe.units.raid.debuffs.xOffset = -4
-	E.db.unitframe.units.raid.growthDirection = "LEFT_UP"
-	E.db.unitframe.units.raid.numGroups = 6
-	E.db.unitframe.units.raid.roleIcon.enable = false
-	E.db.unitframe.units.raid.healPrediction = true
-	E.db.unitframe.units.raid.power.height = 8
-	E.db.unitframe.units.raid.buffs.enable = true
-	E.db.unitframe.units.raid.buffs.yOffset = 28
-	E.db.unitframe.units.raid.buffs.anchorPoint = "BOTTOMLEFT"
-	E.db.unitframe.units.raid.buffs.clickThrough = true
-	E.db.unitframe.units.raid.buffs.useBlacklist = false
-	E.db.unitframe.units.raid.buffs.noDuration = false
-	E.db.unitframe.units.raid.buffs.playerOnly = false
-	E.db.unitframe.units.raid.buffs.perrow = 1
-	E.db.unitframe.units.raid.buffs.useFilter = "TurtleBuffs"
-	E.db.unitframe.units.raid.buffs.noConsolidated = false
-	E.db.unitframe.units.raid.buffs.sizeOverride = 22
-	E.db.unitframe.units.raid.buffs.xOffset = 30
-	E.db.unitframe.units.focustarget.power.width = "inset"
-	E.db.unitframe.units.pet.power.width = "inset"
-	E.db.unitframe.units.targettarget.power.width = "inset"
-	E.db.unitframe.units.player.debuffs.attachTo = "BUFFS"
-	E.db.unitframe.units.player.portrait.overlay = true
-	E.db.unitframe.units.player.classbar.detachFromFrame = true
-	E.db.unitframe.units.player.classbar.enable = false
-	E.db.unitframe.units.player.aurabar.enable = false
-	E.db.unitframe.units.player.power.width = "inset"
-	E.db.unitframe.units.player.power.height = 11
-	E.db.unitframe.units.player.buffs.enable = true
-	E.db.unitframe.units.player.buffs.noDuration = false
-	E.db.unitframe.units.player.buffs.attachTo = "FRAME"
-	E.db.unitframe.units.player.castbar.width = 399
-	E.db.unitframe.units.player.castbar.height = 25
-	E.db.unitframe.units.party.horizontalSpacing = 1
-	E.db.unitframe.units.party.debuffs.sizeOverride = 21
-	E.db.unitframe.units.party.debuffs.yOffset = -7
-	E.db.unitframe.units.party.debuffs.anchorPoint = "TOPRIGHT"
-	E.db.unitframe.units.party.debuffs.xOffset = -4
-	E.db.unitframe.units.party.buffs.enable = true
-	E.db.unitframe.units.party.buffs.yOffset = 28
-	E.db.unitframe.units.party.buffs.anchorPoint = "BOTTOMLEFT"
-	E.db.unitframe.units.party.buffs.clickThrough = true
-	E.db.unitframe.units.party.buffs.useBlacklist = false
-	E.db.unitframe.units.party.buffs.noDuration = false
-	E.db.unitframe.units.party.buffs.playerOnly = false
-	E.db.unitframe.units.party.buffs.perrow = 1
-	E.db.unitframe.units.party.buffs.useFilter = "TurtleBuffs"
-	E.db.unitframe.units.party.buffs.noConsolidated = false
-	E.db.unitframe.units.party.buffs.sizeOverride = 22
-	E.db.unitframe.units.party.buffs.xOffset = 30
-	E.db.unitframe.units.party.growthDirection = "LEFT_UP"
-	E.db.unitframe.units.party.power.text_format = ""
-	E.db.unitframe.units.party.power.width = "inset"
-	E.db.unitframe.units.party.buffIndicator.size = 10
-	E.db.unitframe.units.party.roleIcon.enable = false
-	E.db.unitframe.units.party.roleIcon.position = "BOTTOMRIGHT"
-	E.db.unitframe.units.party.targetsGroup.anchorPoint = "BOTTOM"
-	E.db.unitframe.units.party.GPSArrow.size = 40
-	E.db.unitframe.units.party.customTexts = {}
-	E.db.unitframe.units.party.customTexts['Health Text'] = {}
-	E.db.unitframe.units.party.customTexts['Health Text'].font = "ElvUI Pixel"
-	E.db.unitframe.units.party.customTexts['Health Text'].justifyH = "CENTER"
-	E.db.unitframe.units.party.customTexts['Health Text'].fontOutline = "MONOCHROMEOUTLINE"
-	E.db.unitframe.units.party.customTexts['Health Text'].xOffset = 0
-	E.db.unitframe.units.party.customTexts['Health Text'].size = 10
-	E.db.unitframe.units.party.customTexts['Health Text'].text_format = "[healthcolor][health:deficit]"
-	E.db.unitframe.units.party.customTexts['Health Text'].yOffset = -7
-	E.db.unitframe.units.party.healPrediction = true
-	E.db.unitframe.units.party.width = 80
-	E.db.unitframe.units.party.name.text_format = "[namecolor][name:veryshort] [difficultycolor][smartlevel]"
-	E.db.unitframe.units.party.name.position = "TOP"
-	E.db.unitframe.units.party.health.frequentUpdates = true
-	E.db.unitframe.units.party.health.position = "BOTTOM"
-	E.db.unitframe.units.party.health.text_format = ""
-	E.db.unitframe.units.party.height = 45
-	E.db.unitframe.units.party.verticalSpacing = 1
-	E.db.unitframe.units.party.petsGroup.anchorPoint = "BOTTOM"
-	E.db.unitframe.units.party.raidicon.attachTo = "LEFT"
-	E.db.unitframe.units.party.raidicon.xOffset = 9
-	E.db.unitframe.units.party.raidicon.yOffset = 0
-	E.db.unitframe.units.party.raidicon.size = 13
-	E.db.unitframe.units.arena.power.width = "inset"
-	E.db.unitframe.units.pettarget.power.width = "inset"
-	E.db.unitframe.units.assist.targetsGroup.enable = false
-	E.db.unitframe.units.assist.enable = false
-	E.db.unitframe.colors.auraBarBuff.b = 0.094117647058824
-	E.db.unitframe.colors.auraBarBuff.g = 0.07843137254902
-	E.db.unitframe.colors.auraBarBuff.r = 0.30980392156863
-	E.db.unitframe.colors.transparentPower = true
-	E.db.unitframe.colors.castColor.b = 0.1
-	E.db.unitframe.colors.castColor.g = 0.1
-	E.db.unitframe.colors.castColor.r = 0.1
-	E.db.unitframe.colors.health.b = 0.23529411764706
-	E.db.unitframe.colors.health.g = 0.23529411764706
-	E.db.unitframe.colors.health.r = 0.23529411764706
-	E.db.unitframe.colors.transparentCastbar = true
-	E.db.unitframe.colors.transparentHealth = true
-	E.db.unitframe.colors.transparentAurabars = true
-	E.db.unitframe.smartRaidFilter = false
-	E.db.unitframe.statusbar = "Polished Wood"
-	E.db.datatexts.minimapPanels = false
-	E.db.datatexts.fontSize = 12
-	E.db.datatexts.panelTransparency = true
-	E.db.datatexts.panels.DP_3.middle = "DPS"
-	E.db.datatexts.panels.RightChatDataPanel.right = "Skada"
-	E.db.datatexts.panels.RightChatDataPanel.left = "Combat/Arena Time"
-	E.db.datatexts.panels.DP_1.middle = "Friends"
-	E.db.datatexts.panels.DP_5.middle = "Friends"
-	E.db.datatexts.panels.LeftChatDataPanel.right = "Haste"
-	E.db.datatexts.panels.LeftChatDataPanel.left = "Spell/Heal Power"
-	E.db.datatexts.panels.RightMiniPanel = "Gold"
-	E.db.datatexts.panels.Top_Center = "WIM"
-	E.db.datatexts.panels.Bottom_Panel = "System"
-	E.db.datatexts.panels.DP_6.right = "Gold"
-	E.db.datatexts.panels.DP_6.left = "System"
-	E.db.datatexts.panels.DP_6.middle = "Time"
-	E.db.datatexts.panels.DP_2.middle = "Attack Power"
-	E.db.datatexts.panels.LeftMiniPanel = "Time"
-	E.db.datatexts.font = "ElvUI Font"
-	E.db.datatexts.fontOutline = "None"
-	E.db.datatexts.battleground = false
-	E.db.actionbar.bar3.enabled = false
-	E.db.actionbar.bar3.buttonsPerRow = 3
-	E.db.actionbar.bar3.alpha = 0.4
-	E.db.actionbar.bar2.enabled = true
-	E.db.actionbar.bar2.buttonspacing = 1
-	E.db.actionbar.bar2.alpha = 0.6
-	E.db.actionbar.bar5.enabled = false
-	E.db.actionbar.bar5.buttonsPerRow = 3
-	E.db.actionbar.bar5.alpha = 0.4
-	E.db.actionbar.bar1.buttonspacing = 1
-	E.db.actionbar.bar1.alpha = 0.6
-	E.db.actionbar.stanceBar.buttonsPerRow = 1
-	E.db.actionbar.stanceBar.alpha = 0.6
-	E.db.actionbar.bar4.enabled = false
-	E.db.actionbar.bar4.point = "BOTTOMLEFT"
-	E.db.actionbar.bar4.mouseover = true
-	E.db.actionbar.bar4.backdrop = false
-	E.db.actionbar.bar4.buttonsPerRow = 6
-	E.db.actionbar.bar4.alpha = 0.4
-	E.db.layoutSet = "healer"
-	E.db.sle.datatext.chathandle = true
-	E.db.sle.datatext.top.transparent = true
-	E.db.sle.datatext.top.width = 101
-	E.db.sle.datatext.bottom.transparent = true
-	E.db.sle.datatext.bottom.alpha = 0.8
-	E.db.sle.datatext.bottom.width = 411
-	E.db.sle.datatext.dp6.enabled = true
-	E.db.sle.datatext.dp6.transparent = true
-	E.db.sle.datatext.dp6.alpha = 0.8
-	E.db.sle.datatext.dp6.width = 399
-	E.db.sle.minimap.buttons.anchor = "VERTICAL"
-	E.db.sle.minimap.buttons.mouseover = true
-	E.db.sle.minimap.mapicons.skinmail = false
-	E.db.sle.minimap.mapicons.iconmouseover = true
-	--Character--
-	E.private.general.chatBubbles = "nobackdrop"
-	E.private.addonskins = {}
-	E.private.addonskins.EmbedSystemDual = true
-	E.private.sle.inspectframeoptions.enable = true
-	E.private.sle.characterframeoptions.enable = true
-	E.private.theme = "classic"
-	--Global--
-	E.global.unitframe.aurafilters.TurtleBuffs = {}
-	E.global.unitframe.aurafilters.TurtleBuffs.spells = {}
-	E.global.unitframe.aurafilters.TurtleBuffs.spells['Alter Time'] = {}
-	E.global.unitframe.aurafilters.TurtleBuffs.spells['Elusive Brew'] = {}
-	E.global.unitframe.aurafilters.TurtleBuffs.spells['Alter Time'].enable = true
-	E.global.unitframe.aurafilters.TurtleBuffs.spells['Alter Time'].priority = 0
-	E.global.unitframe.aurafilters.TurtleBuffs.spells['Elusive Brew'].enable = false
-	E.global.unitframe.aurafilters.TurtleBuffs.spells['Elusive Brew'].priority = 99
-	E.global.unitframe.aurafilters.Blacklist = {}
-	E.global.unitframe.aurafilters.Blacklist.spells = {}
-	E.global.unitframe.aurafilters.Blacklist.spells['Bright Light'] = {}
-	E.global.unitframe.aurafilters.Blacklist.spells['Keen Eyesight'] = {}
-	E.global.unitframe.aurafilters.Blacklist.spells['Clear Mind'] = {}
-	E.global.unitframe.aurafilters.Blacklist.spells['Blue Rays'] = {}
-	E.global.unitframe.aurafilters.Blacklist.spells['Inferno Breath'] = {}
-	E.global.unitframe.aurafilters.Blacklist.spells['Infrared Light'] = {}
-	E.global.unitframe.aurafilters.Blacklist.spells['Thick Bones'] = {}
-	E.global.unitframe.aurafilters.Blacklist.spells['Dark Winds'] = {}
-	E.global.unitframe.aurafilters.Blacklist.spells['Fully Mutated'] = {}
-	E.global.unitframe.aurafilters.Blacklist.spells['Improved Synapses'] = {}
-	E.global.unitframe.aurafilters.Blacklist.spells['Unleashed Anima'] = {}
-	E.global.unitframe.aurafilters.Blacklist.spells['Recently Bandaged'] = {}
-	E.global.unitframe.aurafilters.Blacklist.spells['Blue Timer'] = {}
-	E.global.unitframe.aurafilters.Blacklist.spells['Bright Light'].enable = true
-	E.global.unitframe.aurafilters.Blacklist.spells['Bright Light'].priority = 0
-	E.global.unitframe.aurafilters.Blacklist.spells['Keen Eyesight'].enable = true
-	E.global.unitframe.aurafilters.Blacklist.spells['Keen Eyesight'].priority = 0
-	E.global.unitframe.aurafilters.Blacklist.spells['Clear Mind'].enable = true
-	E.global.unitframe.aurafilters.Blacklist.spells['Clear Mind'].priority = 0
-	E.global.unitframe.aurafilters.Blacklist.spells['Blue Rays'].enable = true
-	E.global.unitframe.aurafilters.Blacklist.spells['Blue Rays'].priority = 0
-	E.global.unitframe.aurafilters.Blacklist.spells['Inferno Breath'].enable = true
-	E.global.unitframe.aurafilters.Blacklist.spells['Inferno Breath'].priority = 0
-	E.global.unitframe.aurafilters.Blacklist.spells['Infrared Light'].enable = true
-	E.global.unitframe.aurafilters.Blacklist.spells['Infrared Light'].priority = 0
-	E.global.unitframe.aurafilters.Blacklist.spells['Thick Bones'].enable = true
-	E.global.unitframe.aurafilters.Blacklist.spells['Thick Bones'].priority = 0
-	E.global.unitframe.aurafilters.Blacklist.spells['Dark Winds'].enable = true
-	E.global.unitframe.aurafilters.Blacklist.spells['Dark Winds'].priority = 0
-	E.global.unitframe.aurafilters.Blacklist.spells['Fully Mutated'].enable = true
-	E.global.unitframe.aurafilters.Blacklist.spells['Fully Mutated'].priority = 0
-	E.global.unitframe.aurafilters.Blacklist.spells['Improved Synapses'].enable = true
-	E.global.unitframe.aurafilters.Blacklist.spells['Improved Synapses'].priority = 0
-	E.global.unitframe.aurafilters.Blacklist.spells['Unleashed Anima'].enable = true
-	E.global.unitframe.aurafilters.Blacklist.spells['Unleashed Anima'].priority = 0
-	E.global.unitframe.aurafilters.Blacklist.spells['Recently Bandaged'].enable = true
-	E.global.unitframe.aurafilters.Blacklist.spells['Recently Bandaged'].priority = 0
-	E.global.unitframe.aurafilters.Blacklist.spells['Blue Timer'].enable = true
-	E.global.unitframe.aurafilters.Blacklist.spells['Blue Timer'].priority = 0
-	-- E.global.unitframe.buffwatch.SHAMAN[1].color.b = 1
-	-- E.global.unitframe.buffwatch.SHAMAN[1].color.g = 1
-	-- E.global.unitframe.buffwatch.SHAMAN[1].color.r = 1
-	-- E.global.unitframe.buffwatch.SHAMAN[1].displayText = true
-	-- E.global.unitframe.buffwatch.SHAMAN[1].style = "NONE"
-	-- E.global.unitframe.buffwatch.SHAMAN[2].point = "BOTTOMRIGHT"
-	-- E.global.unitframe.buffwatch.SHAMAN[2].yOffset = 10
-	-- E.global.unitframe.buffwatch.SHAMAN[2].style = "texturedIcon"
-	-- E.global.unitframe.buffwatch.SHAMAN[3].point = "TOPLEFT"
-	-- E.global.unitframe.buffwatch.SHAMAN[3].color.r = 1
-	-- E.global.unitframe.buffwatch.SHAMAN[3].color.g = 1
-	-- E.global.unitframe.buffwatch.SHAMAN[3].color.b = 1
-	-- E.global.unitframe.buffwatch.SHAMAN[3].displayText = true
-	-- E.global.unitframe.buffwatch.SHAMAN[3].style = "NONE"
-	-- E.global.unitframe.buffwatch.PRIEST[1].point = "LEFT"
-	-- E.global.unitframe.buffwatch.PRIEST[1].displayText = true
-	-- E.global.unitframe.buffwatch.PRIEST[1].yOffset = 2
-	-- E.global.unitframe.buffwatch.PRIEST[1].style = "NONE"
-	-- E.global.unitframe.buffwatch.PRIEST[1].textColor.g = 0
-	-- E.global.unitframe.buffwatch.PRIEST[1].textColor.b = 0
-	-- E.global.unitframe.buffwatch.PRIEST[2].point = "TOPRIGHT"
-	-- E.global.unitframe.buffwatch.PRIEST[2].style = "texturedIcon"
-	-- E.global.unitframe.buffwatch.PRIEST[3].enabled = false
-	-- E.global.unitframe.buffwatch.PRIEST[4].color.r = 1
-	-- E.global.unitframe.buffwatch.PRIEST[4].color.g = 1
-	-- E.global.unitframe.buffwatch.PRIEST[4].color.b = 1
-	-- E.global.unitframe.buffwatch.PRIEST[4].displayText = true
-	-- E.global.unitframe.buffwatch.PRIEST[4].style = "NONE"
-	-- E.global.unitframe.buffwatch.PRIEST[6].enabled = false
-	-- E.global.unitframe.buffwatch.PRIEST[7].enabled = false
-	-- E.global.unitframe.buffwatch.PRIEST[8].enabled = false
-	-- E.global.unitframe.buffwatch.PRIEST[9].enabled = true
-	-- E.global.unitframe.buffwatch.PRIEST[9].anyUnit = false
-	-- E.global.unitframe.buffwatch.PRIEST[9].point = "BOTTOMLEFT"
-	-- E.global.unitframe.buffwatch.PRIEST[9].color.b = 1
-	-- E.global.unitframe.buffwatch.PRIEST[9].color.g = 1
-	-- E.global.unitframe.buffwatch.PRIEST[9].color.r = 1
-	-- E.global.unitframe.buffwatch.PRIEST[9].displayText = true
-	-- E.global.unitframe.buffwatch.PRIEST[9].textThreshold = -1
-	-- E.global.unitframe.buffwatch.PRIEST[9].yOffset = 8
-	-- E.global.unitframe.buffwatch.PRIEST[9].style = "NONE"
-	-- E.global.unitframe.buffwatch.PRIEST[9].id = 47753
-	-- E.global.unitframe.buffwatch.PRIEST[10].enabled = true
-	-- E.global.unitframe.buffwatch.PRIEST[10].anyUnit = false
-	-- E.global.unitframe.buffwatch.PRIEST[10].point = "BOTTOMRIGHT"
-	-- E.global.unitframe.buffwatch.PRIEST[10].color.b = 1
-	-- E.global.unitframe.buffwatch.PRIEST[10].color.g = 1
-	-- E.global.unitframe.buffwatch.PRIEST[10].color.r = 1
-	-- E.global.unitframe.buffwatch.PRIEST[10].displayText = true
-	-- E.global.unitframe.buffwatch.PRIEST[10].textThreshold = -1
-	-- E.global.unitframe.buffwatch.PRIEST[10].yOffset = 8
-	-- E.global.unitframe.buffwatch.PRIEST[10].style = "NONE"
-	-- E.global.unitframe.buffwatch.PRIEST[10].id = 114908
-	-- E.global.unitframe.buffwatch.DRUID[1].point = "TOPLEFT"
-	-- E.global.unitframe.buffwatch.DRUID[1].displayText = true
-	-- E.global.unitframe.buffwatch.DRUID[1].style = "NONE"
-	-- E.global.unitframe.buffwatch.DRUID[2].displayText = true
-	-- E.global.unitframe.buffwatch.DRUID[2].style = "NONE"
-	-- E.global.unitframe.buffwatch.DRUID[3].point = "BOTTOMRIGHT"
-	-- E.global.unitframe.buffwatch.DRUID[3].displayText = true
-	-- E.global.unitframe.buffwatch.DRUID[3].textThreshold = 5
-	-- E.global.unitframe.buffwatch.DRUID[3].yOffset = 12
-	-- E.global.unitframe.buffwatch.DRUID[3].style = "texturedIcon"
-	-- E.global.unitframe.buffwatch.DRUID[4].point = "TOPRIGHT"
-	-- E.global.unitframe.buffwatch.DRUID[4].displayText = true
-	-- E.global.unitframe.buffwatch.DRUID[4].textThreshold = 3
-	-- E.global.unitframe.buffwatch.DRUID[4].style = "texturedIcon"
-	-- E.global.unitframe.buffwatch.DRUID[5].enabled = true
-	-- E.global.unitframe.buffwatch.DRUID[5].anyUnit = false
-	-- E.global.unitframe.buffwatch.DRUID[5].point = "LEFT"
-	-- E.global.unitframe.buffwatch.DRUID[5].id = 155777
-	-- E.global.unitframe.buffwatch.DRUID[5].displayText = true
-	-- E.global.unitframe.buffwatch.DRUID[5].color.r = 1
-	-- E.global.unitframe.buffwatch.DRUID[5].color.g = 0
-	-- E.global.unitframe.buffwatch.DRUID[5].color.b = 0
-	-- E.global.unitframe.buffwatch.DRUID[5].style = "texturedIcon"
-	-- E.global.unitframe.buffwatch.DRUID[6].enabled = true
-	-- E.global.unitframe.buffwatch.DRUID[6].anyUnit = false
-	-- E.global.unitframe.buffwatch.DRUID[6].point = "BOTTOMRIGHT"
-	-- E.global.unitframe.buffwatch.DRUID[6].id = 162359
-	-- E.global.unitframe.buffwatch.DRUID[6].displayText = true
-	-- E.global.unitframe.buffwatch.DRUID[6].color.r = 1
-	-- E.global.unitframe.buffwatch.DRUID[6].color.g = 0
-	-- E.global.unitframe.buffwatch.DRUID[6].color.b = 0
-	-- E.global.unitframe.buffwatch.MONK[1].color.r = 1
-	-- E.global.unitframe.buffwatch.MONK[1].color.g = 1
-	-- E.global.unitframe.buffwatch.MONK[1].color.b = 1
-	-- E.global.unitframe.buffwatch.MONK[1].displayText = true
-	-- E.global.unitframe.buffwatch.MONK[1].style = "NONE"
-	-- E.global.unitframe.buffwatch.MONK[2].enabled = false
-	-- E.global.unitframe.buffwatch.MONK[3].color.r = 1
-	-- E.global.unitframe.buffwatch.MONK[3].color.g = 1
-	-- E.global.unitframe.buffwatch.MONK[3].color.b = 1
-	-- E.global.unitframe.buffwatch.MONK[3].displayText = true
-	-- E.global.unitframe.buffwatch.MONK[3].style = "NONE"
-	-- E.global.unitframe.buffwatch.MONK[4].color.r = 1
-	-- E.global.unitframe.buffwatch.MONK[4].color.g = 1
-	-- E.global.unitframe.buffwatch.MONK[4].color.b = 1
-	-- E.global.unitframe.buffwatch.MONK[4].displayText = true
-	-- E.global.unitframe.buffwatch.MONK[4].style = "NONE"
-	-- E.global.unitframe.buffwatch.MONK[5].enabled = true
-	-- E.global.unitframe.buffwatch.MONK[5].anyUnit = false
-	-- E.global.unitframe.buffwatch.MONK[5].point = "TOPRIGHT"
-	-- E.global.unitframe.buffwatch.MONK[5].color.b = 1
-	-- E.global.unitframe.buffwatch.MONK[5].color.g = 1
-	-- E.global.unitframe.buffwatch.MONK[5].color.r = 1
-	-- E.global.unitframe.buffwatch.MONK[5].id = 115175
-	-- E.global.unitframe.buffwatch.MONK[5].displayText = false
-	-- E.global.unitframe.buffwatch.MONK[5].style = "texturedIcon"
-	-- E.global.unitframe.buffwatch.MONK[5].yOffset = 0
-	-- E.global.unitframe.buffwatch.PALADIN[2].enabled = false
-	-- E.global.unitframe.buffwatch.PALADIN[3].enabled = false
-	-- E.global.unitframe.buffwatch.PALADIN[4].enabled = false
-	-- E.global.unitframe.buffwatch.PALADIN[5].enabled = false
-	-- E.global.unitframe.buffwatch.PALADIN[8].anyUnit = false
-	-- E.global.unitframe.buffwatch.PALADIN[8].point = "TOPRIGHT"
-	-- E.global.unitframe.buffwatch.PALADIN[8].color.r = 1
-	-- E.global.unitframe.buffwatch.PALADIN[8].color.g = 0
-	-- E.global.unitframe.buffwatch.PALADIN[8].color.b = 0
-	-- E.global.unitframe.buffwatch.PALADIN[8].displayText = true
-	-- E.global.unitframe.buffwatch.PALADIN[8].style = "NONE"
+	E.db["sle"] = {
+		["nameplate"] = {
+			["showthreat"] = true,
+			["targetcount"] = true,
+		},
+		["datatext"] = {
+			["chathandle"] = true,
+			["top"] = {
+				["enabled"] = true,
+				["transparent"] = true,
+				["width"] = 100,
+			},
+			["bottom"] = {
+				["enabled"] = true,
+				["transparent"] = true,
+				["width"] = 100,
+			},
+			["dp6"] = {
+				["enabled"] = true,
+				["transparent"] = true,
+				["alpha"] = 0.8,
+				["width"] = 399,
+			},
+		},
+		["minimap"] = {
+			["buttons"] = {
+				["anchor"] = "VERTICAL",
+				["mouseover"] = true,
+			},
+			["mapicons"] = {
+				["skinmail"] = false,
+				["iconmouseover"] = true,
+			},
+		},
+	}

-	-- do
-		-- if GetScreenWidth() > 1920 then
-			-- E.db.movers.ElvAB_3 = "BOTTOMElvUIParentBOTTOM25427"
-			-- E.db.movers.ElvAB_5 = "BOTTOMElvUIParentBOTTOM-25427"
-			-- E.db.movers.Bottom_Panel_Mover = "BOTTOMElvUIParentBOTTOM2544"
-			-- E.db.movers.Top_Center_Mover = "BOTTOMElvUIParentBOTTOM-2544"
-		-- else
-			-- E.db.movers.ElvAB_3 = "BOTTOMElvUIParentBOTTOM26027"
-			-- E.db.movers.ElvAB_5 = "BOTTOMElvUIParentBOTTOM-26027"
-			-- E.db.movers.Bottom_Panel_Mover = "BOTTOMElvUIParentBOTTOM2604"
-			-- E.db.movers.Top_Center_Mover = "BOTTOMElvUIParentBOTTOM-2604"
-		-- end
-		-- E.db.movers.ElvUF_PlayerMover = "BOTTOMElvUIParentBOTTOM-278200"
-		-- E.db.movers.ElvUF_PlayerCastbarMover = "BOTTOMElvUIParentBOTTOM0100"
-		-- E.db.movers.ElvUF_TargetMover = "BOTTOMElvUIParentBOTTOM278200"
-		-- E.db.movers.ElvUF_TargetTargetMover = "BOTTOMElvUIParentBOTTOM0190"
-		-- E.db.movers.ElvUF_FocusMover = "BOTTOMElvUIParentBOTTOM-63436"
-		-- E.db.movers.ElvUF_PetMover = "BOTTOMElvUIParentBOTTOM0230"
-		-- E.db.movers.ElvAB_1 = "BOTTOMElvUIParentBOTTOM060"
-		-- E.db.movers.ElvAB_2 = "BOTTOMElvUIParentBOTTOM027"
-		-- E.db.movers.DP_6_Mover = "BOTTOMElvUIParentBOTTOM04"
-		-- E.db.movers.LeftChatMover = "BOTTOMLEFTUIParentBOTTOMLEFT021"
-		-- E.db.movers.RightChatMover = "BOTTOMRIGHTUIParentBOTTOMRIGHT021"
-		-- E.db.movers.PetAB = "RIGHTElvUIParentRIGHT00"
-		-- E.db.movers.ArenaHeaderMover = "TOPRIGHTElvUIParentTOPRIGHT-210-410"
-		-- E.db.movers.BossHeaderMover = "BOTTOMRIGHTElvUIParentBOTTOMRIGHT-210435"
-		-- if layout == 'dpsCaster' or layout == 'dpsMelee' or layout == 'tank' then
-			-- E.db.movers.ElvUF_PartyMover = "BOTTOMLEFTElvUIParentBOTTOMLEFT4200"
-			-- E.db.movers.ElvUF_Raid10Mover = "BOTTOMLEFTElvUIParentBOTTOMLEFT4200"
-			-- E.db.movers.ElvUF_Raid25Mover = "BOTTOMLEFTElvUIParentBOTTOMLEFT4200"
-			-- E.db.movers.ElvUF_Raid40Mover = "BOTTOMLEFTElvUIParentBOTTOMLEFT4200"
-			-- E.db.movers["BossButton"] = "CENTERElvUIParentCENTER-413188"
-		-- else
-			-- E.db.movers.ElvUF_PartyMover = "BOTTOMRIGHTElvUIParentCENTER-213-90"
-			-- E.db.movers.ElvUF_Raid10Mover = "BOTTOMRIGHTElvUIParentCENTER-213-90"
-			-- E.db.movers.ElvUF_Raid25Mover = "BOTTOMRIGHTElvUIParentCENTER-213-90"
-			-- E.db.movers.ElvUF_Raid40Mover = "BOTTOMRIGHTElvUIParentCENTER-213-90"
-			-- E.db.movers["BossButton"] = "CENTERElvUIParentCENTER-413188"
-		-- end
-
-		-- if GetScreenWidth() < 1920 then
-			-- E.db.movers.ElvAB_4 = "BOTTOMLEFTElvUIParentBOTTOMRIGHT-380200"
-			-- E.db.movers.ShiftAB = "BOTTOMLEFTElvUIParentBOTTOMLEFT38221"
-			-- E.db.movers.TotemBarMover = "BOTTOMLEFTElvUIParentBOTTOMLEFT38221"
-		-- else
-			-- E.db.movers.ElvAB_4 = "BOTTOMLEFTElvUIParentBOTTOMRIGHT-413200"
-			-- E.db.movers.ShiftAB = "BOTTOMLEFTElvUIParentBOTTOMLEFT41421"
-			-- E.db.movers.TotemBarMover = "BOTTOMLEFTElvUIParentBOTTOMLEFT41421"
-		-- end
-	-- end
+	E.db["movers"] = {
+		["DP_6_Mover"] = "BOTTOMElvUIParentBOTTOM03",
+		["ElvUF_PlayerCastbarMover"] = "BOTTOMElvUIParentBOTTOM096",
+		["ElvUF_RaidMover"] = "BOTTOMLEFTElvUIParentBOTTOMLEFT440511",
+		["LeftChatMover"] = "BOTTOMLEFTUIParentBOTTOMLEFT021",
+		["ElvUF_Raid10Mover"] = "BOTTOMLEFTElvUIParentBOTTOMLEFT449511",
+		["BossButton"] = "TOPLEFTElvUIParentTOPLEFT622-352",
+		["ElvUF_FocusMover"] = "BOTTOMElvUIParentBOTTOM-63436",
+		["ClassBarMover"] = "BOTTOMElvUIParentBOTTOM-337500",
+		["SquareMinimapBar"] = "TOPRIGHTElvUIParentTOPRIGHT-4-211",
+		["ElvUF_TargetMover"] = "BOTTOMElvUIParentBOTTOM278200",
+		["ElvUF_Raid40Mover"] = "TOPLEFTElvUIParentTOPLEFT447-468",
+		["ElvAB_1"] = "BOTTOMElvUIParentBOTTOM059",
+		["ElvAB_2"] = "BOTTOMElvUIParentBOTTOM025",
+		["ElvAB_4"] = "BOTTOMLEFTElvUIParentBOTTOMRIGHT-413200",
+		["AltPowerBarMover"] = "BOTTOMElvUIParentBOTTOM-300338",
+		["ElvAB_3"] = "BOTTOMElvUIParentBOTTOM25425",
+		["ElvAB_5"] = "BOTTOMElvUIParentBOTTOM-25425",
+		["MMButtonsMover"] = "TOPRIGHTElvUIParentTOPRIGHT-214-160",
+		["ElvUF_PlayerMover"] = "BOTTOMElvUIParentBOTTOM-278200",
+		["ElvUF_TargetTargetMover"] = "BOTTOMElvUIParentBOTTOM0190",
+		["ShiftAB"] = "BOTTOMLEFTElvUIParentBOTTOMLEFT41421",
+		["RightChatMover"] = "BOTTOMRIGHTUIParentBOTTOMRIGHT021",
+		["TotemBarMover"] = "BOTTOMLEFTElvUIParentBOTTOMLEFT41421",
+		["ArenaHeaderMover"] = "TOPRIGHTElvUIParentTOPRIGHT-210-410",
+		["DP_5_Mover"] = "BOTTOMLEFTElvUIParentBOTTOMLEFT4327",
+		["Top_Center_Mover"] = "BOTTOMElvUIParentBOTTOM-2543",
+		["BossHeaderMover"] = "BOTTOMRIGHTElvUIParentBOTTOMRIGHT-210435",
+		["ElvUF_PetMover"] = "BOTTOMElvUIParentBOTTOM0230",
+		["ElvAB_6"] = "BOTTOMElvUIParentBOTTOM0102",
+		["ElvUF_PartyMover"] = "BOTTOMLEFTElvUIParentBOTTOMLEFT449511",
+		["Bottom_Panel_Mover"] = "BOTTOMElvUIParentBOTTOM2543",
+		["PetAB"] = "TOPRIGHTElvUIParentTOPRIGHT-4-433",
+		["ElvUF_Raid25Mover"] = "TOPLEFTElvUIParentTOPLEFT449-448",
+	}
+
+	E.db["gridSize"] = 110
+
+	E.db["tooltip"] = {
+		["style"] = "inset",
+		["visibility"] = {
+			["combat"] = true,
+		},
+	}
+
+	E.db["chat"] = {
+		["timeStampFormat"] = "%I:%M ",
+		["editBoxPosition"] = "ABOVE_CHAT",
+		["lfgIcons"] = false,
+		["emotionIcons"] = false,
+	}
+
+	E.db["unitframe"] = {
+		["units"] = {
+			["tank"] = {
+				["enable"] = false,
+			},
+			["party"] = {
+				["horizontalSpacing"] = 1,
+				["debuffs"] = {
+					["sizeOverride"] = 21,
+					["yOffset"] = -7,
+					["anchorPoint"] = "TOPRIGHT",
+					["xOffset"] = -4,
+				},
+				["buffs"] = {
+					["enable"] = true,
+					["yOffset"] = 28,
+					["anchorPoint"] = "BOTTOMLEFT",
+					["clickThrough"] = true,
+					["useBlacklist"] = false,
+					["noDuration"] = false,
+					["playerOnly"] = false,
+					["perrow"] = 1,
+					["useFilter"] = "TurtleBuffs",
+					["noConsolidated"] = false,
+					["sizeOverride"] = 22,
+					["xOffset"] = 30,
+				},
+				["growthDirection"] = "LEFT_UP",
+				["GPSArrow"] = {
+					["size"] = 40,
+				},
+				["buffIndicator"] = {
+					["size"] = 10,
+				},
+				["roleIcon"] = {
+					["enable"] = false,
+					["position"] = "BOTTOMRIGHT",
+				},
+				["targetsGroup"] = {
+					["anchorPoint"] = "BOTTOM",
+				},
+				["power"] = {
+					["text_format"] = "",
+					["width"] = "inset",
+				},
+				["customTexts"] = {
+					["Health Text"] = {
+						["font"] = "ElvUI Pixel",
+						["justifyH"] = "CENTER",
+						["fontOutline"] = "MONOCHROMEOUTLINE",
+						["xOffset"] = 0,
+						["yOffset"] = -7,
+						["text_format"] = "[healthcolor][health:deficit]",
+						["size"] = 10,
+					},
+				},
+				["healPrediction"] = true,
+				["width"] = 80,
+				["name"] = {
+					["text_format"] = "[namecolor][name:veryshort] [difficultycolor][smartlevel]",
+					["position"] = "TOP",
+				},
+				["health"] = {
+					["frequentUpdates"] = true,
+					["position"] = "BOTTOM",
+					["text_format"] = "",
+				},
+				["height"] = 45,
+				["verticalSpacing"] = 1,
+				["petsGroup"] = {
+					["anchorPoint"] = "BOTTOM",
+				},
+				["raidicon"] = {
+					["attachTo"] = "LEFT",
+					["xOffset"] = 9,
+					["yOffset"] = 0,
+					["size"] = 13,
+				},
+			},
+			["raid40"] = {
+				["horizontalSpacing"] = 1,
+				["debuffs"] = {
+					["enable"] = true,
+					["yOffset"] = -9,
+					["anchorPoint"] = "TOPRIGHT",
+					["clickThrough"] = true,
+					["useBlacklist"] = false,
+					["perrow"] = 2,
+					["useFilter"] = "Blacklist",
+					["sizeOverride"] = 21,
+					["xOffset"] = -4,
+				},
+				["rdebuffs"] = {
+					["size"] = 26,
+				},
+				["growthDirection"] = "UP_LEFT",
+				["health"] = {
+					["frequentUpdates"] = true,
+				},
+				["power"] = {
+					["enable"] = true,
+					["width"] = "inset",
+					["position"] = "CENTER",
+				},
+				["customTexts"] = {
+					["Health Text"] = {
+						["font"] = "ElvUI Pixel",
+						["justifyH"] = "CENTER",
+						["fontOutline"] = "MONOCHROMEOUTLINE",
+						["xOffset"] = 0,
+						["yOffset"] = -7,
+						["text_format"] = "[healthcolor][health:deficit]",
+						["size"] = 10,
+					},
+				},
+				["healPrediction"] = true,
+				["width"] = 50,
+				["invertGroupingOrder"] = false,
+				["name"] = {
+					["text_format"] = "[namecolor][name:veryshort]",
+					["position"] = "TOP",
+				},
+				["buffs"] = {
+					["enable"] = true,
+					["yOffset"] = 25,
+					["anchorPoint"] = "BOTTOMLEFT",
+					["clickThrough"] = true,
+					["useBlacklist"] = false,
+					["noDuration"] = false,
+					["playerOnly"] = false,
+					["perrow"] = 1,
+					["useFilter"] = "TurtleBuffs",
+					["noConsolidated"] = false,
+					["sizeOverride"] = 17,
+					["xOffset"] = 21,
+				},
+				["height"] = 43,
+				["verticalSpacing"] = 1,
+				["raidicon"] = {
+					["attachTo"] = "LEFT",
+					["xOffset"] = 9,
+					["yOffset"] = 0,
+					["size"] = 13,
+				},
+			},
+			["focus"] = {
+				["power"] = {
+					["width"] = "inset",
+				},
+			},
+			["target"] = {
+				["portrait"] = {
+					["overlay"] = true,
+				},
+				["aurabar"] = {
+					["enable"] = false,
+				},
+				["power"] = {
+					["width"] = "inset",
+					["height"] = 11,
+				},
+			},
+			["raid"] = {
+				["debuffs"] = {
+					["countFontSize"] = 13,
+					["fontSize"] = 9,
+					["enable"] = true,
+					["yOffset"] = -7,
+					["anchorPoint"] = "TOPRIGHT",
+					["sizeOverride"] = 21,
+					["xOffset"] = -4,
+				},
+				["growthDirection"] = "LEFT_UP",
+				["numGroups"] = 8,
+				["roleIcon"] = {
+					["enable"] = false,
+				},
+				["healPrediction"] = true,
+				["power"] = {
+					["height"] = 8,
+				},
+				["buffs"] = {
+					["enable"] = true,
+					["yOffset"] = 28,
+					["anchorPoint"] = "BOTTOMLEFT",
+					["clickThrough"] = true,
+					["useBlacklist"] = false,
+					["noDuration"] = false,
+					["playerOnly"] = false,
+					["perrow"] = 1,
+					["useFilter"] = "TurtleBuffs",
+					["noConsolidated"] = false,
+					["sizeOverride"] = 22,
+					["xOffset"] = 30,
+				},
+			},
+			["focustarget"] = {
+				["power"] = {
+					["width"] = "inset",
+				},
+			},
+			["pettarget"] = {
+				["power"] = {
+					["width"] = "inset",
+				},
+			},
+			["pet"] = {
+				["power"] = {
+					["width"] = "inset",
+				},
+			},
+			["player"] = {
+				["debuffs"] = {
+					["attachTo"] = "BUFFS",
+				},
+				["portrait"] = {
+					["overlay"] = true,
+				},
+				["classbar"] = {
+					["detachFromFrame"] = true,
+					["enable"] = false,
+				},
+				["aurabar"] = {
+					["enable"] = false,
+				},
+				["power"] = {
+					["width"] = "inset",
+					["height"] = 11,
+				},
+				["buffs"] = {
+					["enable"] = true,
+					["noDuration"] = false,
+					["attachTo"] = "FRAME",
+				},
+				["castbar"] = {
+					["width"] = 399,
+					["height"] = 25,
+				},
+			},
+			["boss"] = {
+				["portrait"] = {
+					["enable"] = true,
+					["overlay"] = true,
+				},
+				["power"] = {
+					["width"] = "inset",
+				},
+			},
+			["arena"] = {
+				["power"] = {
+					["width"] = "inset",
+				},
+			},
+			["targettarget"] = {
+				["power"] = {
+					["width"] = "inset",
+				},
+			},
+			["assist"] = {
+				["targetsGroup"] = {
+					["enable"] = false,
+				},
+				["enable"] = false,
+			},
+		},
+		["statusbar"] = "Polished Wood",
+		["colors"] = {
+			["auraBarBuff"] = {
+				["b"] = 0.0941176470588236,
+				["g"] = 0.0784313725490196,
+				["r"] = 0.309803921568628,
+			},
+			["transparentPower"] = true,
+			["castColor"] = {
+				["b"] = 0.1,
+				["g"] = 0.1,
+				["r"] = 0.1,
+			},
+			["health"] = {
+				["b"] = 0.235294117647059,
+				["g"] = 0.235294117647059,
+				["r"] = 0.235294117647059,
+			},
+			["transparentHealth"] = true,
+			["transparentCastbar"] = true,
+			["transparentAurabars"] = true,
+		},
+	}
+
+	E.db["datatexts"] = {
+		["minimapPanels"] = false,
+		["fontSize"] = 12,
+		["panelTransparency"] = true,
+		["panels"] = {
+			["DP_3"] = {
+				["middle"] = "DPS",
+			},
+			["RightChatDataPanel"] = {
+				["right"] = "Skada",
+				["left"] = "Combat/Arena Time",
+			},
+			["DP_1"] = {
+				["middle"] = "Friends",
+			},
+			["DP_5"] = {
+				["middle"] = "Friends",
+			},
+			["LeftChatDataPanel"] = {
+				["right"] = "Haste",
+				["left"] = "Spell/Heal Power",
+			},
+			["RightMiniPanel"] = "Gold",
+			["Top_Center"] = "WIM",
+			["Bottom_Panel"] = "Talent/Loot Specialization",
+			["DP_6"] = {
+				["right"] = "Gold",
+				["left"] = "System",
+				["middle"] = "Time",
+			},
+			["DP_2"] = {
+				["middle"] = "Attack Power",
+			},
+			["LeftMiniPanel"] = "Time",
+		},
+		["font"] = "ElvUI Font",
+		["fontOutline"] = "None",
+		["battleground"] = false,
+	}
+
+	E.db["actionbar"] = {
+		["bar3"] = {
+			["buttonspacing"] = 1,
+			["buttonsPerRow"] = 3,
+			["alpha"] = 0.4,
+		},
+		["bar2"] = {
+			["enabled"] = true,
+			["buttonspacing"] = 1,
+			["alpha"] = 0.6,
+		},
+		["bar5"] = {
+			["buttonspacing"] = 1,
+			["buttonsPerRow"] = 3,
+			["alpha"] = 0.4,
+		},
+		["bar1"] = {
+			["buttonspacing"] = 1,
+			["alpha"] = 0.6,
+		},
+		["stanceBar"] = {
+			["buttonsPerRow"] = 1,
+			["alpha"] = 0.6,
+		},
+		["bar4"] = {
+			["enabled"] = false,
+			["point"] = "BOTTOMLEFT",
+			["alpha"] = 0.4,
+			["buttonsPerRow"] = 6,
+			["backdrop"] = false,
+		},
+	}
+
+	E.db["general"] = {
+		["autoRepair"] = "GUILD",
+		["bottomPanel"] = false,
+		["backdropfadecolor"] = {
+			["b"] = 0.054,
+			["g"] = 0.054,
+			["r"] = 0.054,
+		},
+		["valuecolor"] = {
+			["b"] = 0.819,
+			["g"] = 0.513,
+			["r"] = 0.09,
+		},
+		["threat"] = {
+			["position"] = "LEFTCHAT",
+		},
+		["topPanel"] = false,
+		["health"] = {
+		},
+		["BUFFS"] = {
+		},
+		["vendorGrays"] = true,
+	}
+
+	E.private["general"]["normTex"] = "Polished Wood"
+	E.private["general"]["chatBubbles"] = "nobackdrop"
+	E.private["general"]["glossTex"] = "Polished Wood"
+
+	if AddOnSkins then
+		E.private["addonskins"] = {
+			["Blizzard_WorldStateCaptureBar"] = true,
+			["EmbedSkada"] = true,
+			["EmbedalDamageMeter"] = false,
+			["EmbedSystemDual"] = true,
+			['EmbedLeft'] = 'Skada',
+			['EmbedRight'] = 'Skada',
+		}
+	end
+
+	E.private["skins"] = {
+		["addons"] = {
+			["EmbedSystemDual"] = true,
+			["EmbedMain"] = "Skada, Skada",
+			["EmbedalDamageMeter"] = false,
+			["TransparentEmbed"] = true,
+		},
+	}
+
+
+	E.private["sle"]["inspectframeoptions"]["enable"] = true
+	E.private["sle"]["characterframeoptions"]["enable"] = true
+
+	E.private["theme"] = "default"

 	E:UpdateAll(true)
 end
@@ -1694,7 +1690,7 @@ local function SetPage(PageNum)

 	elseif PageNum == 4 then
 		f.SubTitle:SetText(L["Shadow & Light Layouts"])
-		f.Desc1:SetText(L["You can now choose if you want to use one of the authors' set of options. This will change the positioning of some elements as well of other various options."])
+		f.Desc1:SetText(L["You can now choose if you what to use one of authors' set of options. This will change not only the positioning of some elements but also change a bunch of other options."])
 		local word = E.db.layoutSet == 'tank' and L["Tank"] or E.db.layoutSet == 'healer' and L["Healer"] or E.db.layoutSet == 'dpsMelee' and L['Physical DPS'] or E.db.layoutSet == 'dpsCaster' and L['Caster DPS'] or NONE
 		f.Desc2:SetText(format(L["SLE_Install_Text2"], word))
 		f.Desc3:SetText(L["Importance: |cffFF0000Low|r"])
diff --git a/ElvUI_SLE/core/load_core.xml b/ElvUI_SLE/core/load_core.xml
index 015cd78..3da0dae 100644
--- a/ElvUI_SLE/core/load_core.xml
+++ b/ElvUI_SLE/core/load_core.xml
@@ -1 +1 @@
-<Ui xmlns="http://www.blizzard.com/wow/ui/">
	<Script file='modules.lua'/>
	<Script file='core.lua'/>
	<Script file='media.lua'/>
	<Script file='toolkit.lua'/>
	<Script file='commands.lua'/>
	<Script file='staticpopups.lua'/>
	<Script file='install.lua'/>
	<Include file='installer\load_install.xml'/>
	<Script file='elvprot.lua'/>
	<Script file='test.lua'/>
</Ui>
\ No newline at end of file
+<Ui xmlns="http://www.blizzard.com/wow/ui/">
	<Script file='modules.lua'/>
	<Script file='core.lua'/>
	<Script file='media.lua'/>
	<Script file='toolkit.lua'/>
	<Script file='communicate.lua'/>
	<Script file='staticpopups.lua'/>
	<Script file='install.lua'/>
	<Include file='installer\load_install.xml'/>
	<Script file='elvprot.lua'/>
	<Script file='test.lua'/>
</Ui>
\ No newline at end of file
diff --git a/ElvUI_SLE/core/toolkit.lua b/ElvUI_SLE/core/toolkit.lua
index 9d89487..f03f9b5 100644
--- a/ElvUI_SLE/core/toolkit.lua
+++ b/ElvUI_SLE/core/toolkit.lua
@@ -119,6 +119,8 @@ function SLE:SettingTable(t, s, root)
 	end
 end

+
+
 function SLE:ImportTableReplace(msg)
 	if not string.find(msg, "E.db") and not string.find(msg, "E.private") and not string.find(msg, "E.global") then
 		return nil
diff --git a/ElvUI_SLE/options/dev_c.lua b/ElvUI_SLE/options/dev_c.lua
index 85a815b..07dc2e9 100644
--- a/ElvUI_SLE/options/dev_c.lua
+++ b/ElvUI_SLE/options/dev_c.lua
@@ -178,136 +178,6 @@ if SLE:Auth() then
 						},
 					},
 				},
-				devcommand = {
-					order = 4,
-					type = "group",
-					name = "Commands",
-					args = {
-						header = {
-							order = 1,
-							type = "header",
-							name = "Developer commands execution GUI",
-						},
-						desc = {
-							order = 2,
-							type = 'description',
-							name = "The GUI for executing old /slesays and /slecmd without typing all the shit mannually.",
-						},
-						flag = {
-							type = 'select',
-							name = 'Addon message type',
-							order = 3,
-							get = function() return flag end,
-							set = function(_, value)
-								flag = value
-							end,
-							values = {
-								['SLE_DEV_SAYS'] = 'S&L Says',
-								['SLE_DEV_CMD'] = 'S&L Command',
-							},
-						},
-						channel = {
-							type = 'select',
-							name = 'Addon message channel',
-							order = 4,
-							get = function() return addonChannel end,
-							set = function(_, value)
-								addonChannel = value
-							end,
-							values = {
-								['GUILD'] = 'Guild',
-								['INSTANCE_CHAT'] = 'Instance',
-								['PARTY'] = 'Party',
-								['RAID'] = 'Raid',
-								['WHISPER'] = 'Whisper',
-								['BNET'] = 'BNet',
-							},
-						},
-						bnetlist = {
-							type = 'select',
-							name = 'BNet List',
-							order = 5,
-							disabled = function() return addonChannel ~= 'BNET' end,
-							get = function() return bnetP end,
-							set = function(_, value)
-								bnetP = value
-							end,
-							values = function()
-								SLE:GetBNetInfo()
-								return bnettesttbl
-							end,
-						},
-						target = {
-							order = 6,
-							type = 'input',
-							width = 'full',
-							name = 'Unit to send message to',
-							disabled = function() return addonChannel == 'BNET' end,
-							get = function() return addonTarget end,
-							set = function(_, value)
-								addonTarget = value
-							end,
-						},
-						message = {
-							order = 7,
-							type = "group",
-							name = 'Message',
-							guiInline = true,
-							args = {
-								channel = {
-									type = 'select',
-									order = 1,
-									name = 'Output channel (S&L Says only)',
-									disabled = function() return flag ~= 'SLE_DEV_SAYS' end,
-									get = function() return output end,
-									set = function(_, value)
-										output = value
-									end,
-									values = {
-										['GUILD'] = 'Guild',
-										['INSTANCE_CHAT'] = 'Instance',
-										['PARTY'] = 'Party',
-										['RAID'] = 'Raid',
-										['SAY'] = "Say",
-										['YELL'] = "Yell",
-										['WHISPER'] = "Whisper",
-									},
-								},
-								message = {
-									type = 'input',
-									order = 2,
-									width = 'full',
-									name = 'Message to send/Script to execute',
-									get = function() return text end,
-									set = function(_, value)
-										text = value
-									end,
-								},
-								whispTarget = {
-									type = 'input',
-									order = 3,
-									width = 'full',
-									name = 'Whisper target (S&L Says with whisper only)',
-									disabled = function() return (flag ~= 'SLE_DEV_SAYS') or (flag == 'SLE_DEV_SAYS' and output ~= 'WHISPER') end,
-									get = function() return wtarget end,
-									set = function(_, value)
-										wtarget = value
-									end,
-								},
-							},
-						},
-						submitbutton = {
-							type = 'execute',
-							order = 8,
-							name = "Execute command",
-							desc = "Unleash the chaos!!!",
-							func = function ()
-								SLE:Print('Trying to execute this command...')
-								E:sleCommand(flag, addonChannel, addonTarget, output, text, wtarget, bnetP)
-							end,
-						},
-					},
-				},
 				devdiaggroup = {
 					order = 5,
 					type = "group",