-
Notifications
You must be signed in to change notification settings - Fork 8
/
GoGoMount.xml
77 lines (76 loc) · 2.71 KB
/
GoGoMount.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/ ..\FrameXML\UI.xsd">
<Script file="GoGoMountData.lua"/>
<Script file="locale\enUS.lua"/>
<Script file="locale\deDE.lua"/>
<Script file="locale\esES.lua"/>
<Script file="locale\esMX.lua"/>
<Script file="locale\frFR.lua"/>
<Script file="locale\itIT.lua"/>
<Script file="locale\koKR.lua"/>
<Script file="locale\ptBR.lua"/>
<Script file="locale\ruRU.lua"/>
<Script file="locale\zhCN.lua"/>
<Script file="locale\zhTW.lua"/>
<Script file="localization.lua"/>
<Script file="GoGoZones.lua"/>
<Script file="GoGoMount.lua"/>
<Frame name="GoGoFrame">
<Scripts>
<OnLoad>
GoGo_OnLoad();
</OnLoad>
<OnEvent>
GoGo_OnEvent(self, event, ...);
</OnEvent>
</Scripts>
</Frame>
<Button name="GoGoButton" inherits="SecureActionButtonTemplate" parent="UIParent" frameStrata="LOW" hidden="false">
<Attributes>
<Attribute name="type" type="string" value="macro"/>
</Attributes>
<Scripts>
<PreClick>
if GoGo_Variables.Debug >= 10 then GoGo_Variables.DebugTimer = debugprofilestop() end --if
if GoGo_Variables.Debug >= 10 then GoGo_DebugAddLine("BUTTON: Button 1 pressed.") end --if
GoGo_Variables.SelectPassengerMount = false
GoGo_Variables.SkipFlyingMount = nil
GoGo_PreClick(self)
</PreClick>
</Scripts>
</Button>
<Button name="GoGoButton2" inherits="SecureActionButtonTemplate" parent="UIParent" frameStrata="LOW" hidden="false">
<Attributes>
<Attribute name="type" type="string" value="macro"/>
</Attributes>
<Scripts>
<PreClick>
if GoGo_Variables.Debug >= 10 then GoGo_Variables.DebugTimer = debugprofilestop() end --if
if GoGo_Variables.Debug >= 10 then GoGo_DebugAddLine("BUTTON: Button 2 pressed.") end --if
GoGo_Variables.SelectPassengerMount = false
GoGo_Variables.SkipFlyingMount = true
GoGo_PreClick(self)
</PreClick>
</Scripts>
</Button>
<Button name="GoGoButton3" inherits="SecureActionButtonTemplate" parent="UIParent" frameStrata="LOW" hidden="false">
<Attributes>
<Attribute name="type" type="string" value="macro"/>
</Attributes>
<Scripts>
<PreClick>
if GoGo_Variables.Debug >= 10 then GoGo_Variables.DebugTimer = debugprofilestop() end --if
if GoGo_Variables.Debug >= 10 then GoGo_DebugAddLine("BUTTON: Button 3 pressed.") end --if
GoGo_Variables.SelectPassengerMount = true
GoGo_Variables.SkipFlyingMount = false
GoGo_PreClick(self)
</PreClick>
</Scripts>
</Button>
<Frame name="GoGo_Panel">
<Scripts>
<OnLoad>
GoGo_Panel_OnLoad(self);
</OnLoad>
</Scripts>
</Frame>
</Ui>