-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMoving.lua
28 lines (24 loc) · 914 Bytes
/
Moving.lua
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
------------------
-- MOVE TOOLTIP --
------------------
-- function ToolTipHandler(self)
-- self:SetOwner(UIParent,"ANCHOR_NONE")
-- self:SetPoint("BOTTOMRIGHT", UIParent, -240, 15)
-- end
--
-- hooksecurefunc("GameTooltip_SetDefaultAnchor", ToolTipHandler)
---------------------
-- MOVE OBJECTIVES --
---------------------
-- function ObjectiveHandler(self)
-- -- self:SetOwner(UIParent, "ANCHOR_NONE")
-- -- self:SetPoint("TOPRIGHT", UIParent, "TOPRIGHT", -5, -350)
-- ObjectiveTrackerFrame:ClearAllPoints()
-- ObjectiveTrackerFrame:SetPoint("TOPRIGHT", UIParent, "TOPRIGHT", -5, -350)
-- end
--
-- hooksecurefunc("ObjectiveTracker_Update", ObjectiveHandler)
-- local f = CreateFrame("Frame", nil, UIParent)
-- f:RegisterEvent("SUPER_TRACKING_CHANGED")
-- f:RegisterEvent("QUEST_WATCH_LIST_CHANGED")
-- f:SetScript("OnEvent", function() ObjectiveHandler() end)