forked from Lexiebean/AtlasLoot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBindings.xml
56 lines (56 loc) · 1.48 KB
/
Bindings.xml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<Bindings>
<Binding name="ATLASLOOT_TOGGLE" header="ATLASLOOT_TITLE">
AtlasLoot_Toggle()
</Binding>
<Binding name="ATLASLOOT_OPTIONS">
AtlasLootOptions_Toggle()
</Binding>
<Binding name="ATLASLOOT_QL1">
if AtlasLootCharDB["QuickLooks"][1] then
if AtlasFrame and AtlasFrame:IsVisible() then
AtlasLootPanel_Preset1:Click()
else
ShowUIPanel(AtlasLootDefaultFrame)
AtlasLootDefaultFrame_Preset1:Click()
end
end
</Binding>
<Binding name="ATLASLOOT_QL2">
if AtlasLootCharDB["QuickLooks"][2] then
if AtlasFrame and AtlasFrame:IsVisible() then
AtlasLootPanel_Preset2:Click()
else
ShowUIPanel(AtlasLootDefaultFrame)
AtlasLootDefaultFrame_Preset2:Click()
end
end
</Binding>
<Binding name="ATLASLOOT_QL3">
if AtlasLootCharDB["QuickLooks"][3] then
if AtlasFrame and AtlasFrame:IsVisible() then
AtlasLootPanel_Preset3:Click()
else
ShowUIPanel(AtlasLootDefaultFrame)
AtlasLootDefaultFrame_Preset3:Click()
end
end
</Binding>
<Binding name="ATLASLOOT_QL4">
if AtlasLootCharDB["QuickLooks"][4] then
if AtlasFrame and AtlasFrame:IsVisible() then
AtlasLootPanel_Preset4:Click()
else
ShowUIPanel(AtlasLootDefaultFrame)
AtlasLootDefaultFrame_Preset4:Click()
end
end
</Binding>
<Binding name="ATLASLOOT_WISHLIST">
if AtlasFrame and AtlasFrame:IsVisible() then
AtlasLootPanel_WishList:Click()
else
ShowUIPanel(AtlasLootDefaultFrame)
AtlasLootDefaultFrameWishListButton:Click()
end
</Binding>
</Bindings>