This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local T, C, L, _ = unpack(select(2, ...)) | |
| ---------------------------------------------------------------------------------------- | |
| -- Move ObjectiveTrackerFrame and hide background | |
| ---------------------------------------------------------------------------------------- | |
| local frame = CreateFrame("Frame", "ObjectiveTrackerAnchor", UIParent) | |
| frame:SetPoint(unpack(C.position.quest)) | |
| frame:SetSize(224, 150) | |
| ObjectiveTrackerFrame:ClearAllPoints() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local T, C, L, _ = unpack(select(2, ...)) | |
| if C.minimap.enable ~= true then return end | |
| ---------------------------------------------------------------------------------------- | |
| -- Minimap border | |
| ---------------------------------------------------------------------------------------- | |
| local MinimapAnchor = CreateFrame("Frame", "MinimapAnchor", UIParent) | |
| MinimapAnchor:CreatePanel("ClassColor", C.minimap.size, C.minimap.size, unpack(C.position.minimap)) | |
| ---------------------------------------------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local T, C, L, _ = unpack(select(2, ...)) | |
| if C.skins.blizzard_frames ~= true then return end | |
| ---------------------------------------------------------------------------------------- | |
| -- TradeSkillUI skin | |
| ---------------------------------------------------------------------------------------- | |
| local function LoadSkin() | |
| TradeSkillFrame:StripTextures(true) | |
| TradeSkillFrame.RecipeInset:StripTextures() | |
| TradeSkillFrame.DetailsInset:StripTextures() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local T, C, L, _ = unpack(select(2, ...)) | |
| if C.misc.chars_currency ~= true then return end | |
| ---------------------------------------------------------------------------------------- | |
| -- Tracks your currency tokens across multiple characters(Exonumist by Phanx) | |
| ---------------------------------------------------------------------------------------- | |
| local realmDB, charDB | |
| local faction = UnitFactionGroup("player") | |
| local playerList = {} | |
| local classColor = {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local T, C, L, _ = unpack(select(2, ...)) | |
| ---------------------------------------------------------------------------------------- | |
| -- Move ObjectiveTrackerFrame and hide background | |
| ---------------------------------------------------------------------------------------- | |
| local frame = CreateFrame("Frame", "ObjectiveTrackerAnchor", UIParent) | |
| frame:SetPoint(unpack(C.position.quest)) | |
| frame:SetSize(224, 150) | |
| ObjectiveTrackerFrame:ClearAllPoints() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local T, C, L, _ = unpack(select(2, ...)) | |
| if C.actionbar.enable ~= true then return end | |
| ------------------------------------------------------------------------------------------ | |
| -- Make ExtraActionBarFrame movable (use macro /click ExtraActionButton1) | |
| ------------------------------------------------------------------------------------------ | |
| local anchor = CreateFrame("Frame", "ExtraButtonAnchor", UIParent) | |
| if C.actionbar.split_bars then | |
| anchor:SetPoint(C.position.extra_button[1], SplitBarLeft, C.position.extra_button[3], C.position.extra_button[4], C.position.extra_button[5]) | |
| else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local T, C, L, _ = unpack(select(2, ...)) | |
| ---------------------------------------------------------------------------------------- | |
| -- Clear UIErrorsFrame(module from Kousei by Haste) | |
| ---------------------------------------------------------------------------------------- | |
| if C.general.error_filter == "WHITELIST" or C.general.error_filter == "BLACKLIST" then | |
| local frame = CreateFrame("Frame") | |
| frame:RegisterEvent("UI_ERROR_MESSAGE") | |
| frame:SetScript("OnEvent", function(_, _, messageType, text) | |
| if C.general.error_filter == "WHITELIST" then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local T, C, L, _ = unpack(select(2, ...)) | |
| if C.actionbar.enable ~= true then return end | |
| ------------------------------------------------------------------------------------------ | |
| -- Make ExtraActionBarFrame movable (use macro /click ExtraActionButton1) | |
| ------------------------------------------------------------------------------------------ | |
| local anchor = CreateFrame("Frame", "ExtraButtonAnchor", UIParent) | |
| if C.actionbar.split_bars then | |
| anchor:SetPoint(C.position.extra_button[1], SplitBarLeft, C.position.extra_button[3], C.position.extra_button[4], C.position.extra_button[5]) | |
| else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local T, C, L, _ = unpack(select(2, ...)) | |
| ---------------------------------------------------------------------------------------- | |
| -- Movement function(by Allez) | |
| ---------------------------------------------------------------------------------------- | |
| T.MoverFrames = { | |
| VehicleButtonAnchor, | |
| ExtraButtonAnchor, | |
| ZoneButtonAnchor, | |
| ActionBarAnchor, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local T, C, L, _ = unpack(select(2, ...)) | |
| if C.actionbar.enable ~= true then return end | |
| ------------------------------------------------------------------------------------------ | |
| -- Make ExtraActionBarFrame movable (use macro /click ExtraActionButton1) | |
| ------------------------------------------------------------------------------------------ | |
| local anchor = CreateFrame("Frame", "ExtraButtonAnchor", UIParent) | |
| if C.actionbar.split_bars then | |
| anchor:SetPoint(C.position.extra_button[1], SplitBarLeft, C.position.extra_button[3], C.position.extra_button[4], C.position.extra_button[5]) | |
| else |
NewerOlder