Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6,444 changes: 3,222 additions & 3,222 deletions GoGoMount.lua

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions GoGoMount.toc
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
## Interface: 80100
## Title: GoGoMount
## Version: 8.1.5
## Notes: One-key solution for mounting/dismounting, supports spells, shapeshifting
## Notes-enGB: One-key solution for mounting/dismounting, supports spells, shapeshifting
## Notes-deDE: Ein-Tasten-Lösung für das Auf- und Absitzen von Reittieren, unterstützt auch Zaubersprüche und Gestaltwandlung
## Notes-esES: Una clave para la solución de montaje / desmontaje, apoya hechizos, shapeshifting
## Notes-esMX: Una clave para la solución de montaje / desmontaje, apoya hechizos, shapeshifting
## Notes-frFR: Une solution clé pour le montage / démontage, soutient sorts, shapeshifting
## Notes-ruRU: Одним из ключей решения для монтажа / демонтажа, поддерживает заклинаний, shapeshifting
## Notes-zhTW: 一鍵上下馬,支援召喚和變形
## Notes-koKR: 탈것의 타기/내리기를 위한 1 키 해결, 주문, 변신 지원
## Author: Gadgets (Tiker) @ Bleeding Hollow
## SavedVariablesPerCharacter: GoGo_Prefs GoGo_DebugLog
## SavedVariables: GoGoMount_MountSettings
GoGoMount.xml
## Interface: 80300
## Title: GoGoMount
## Version: 8.1.6
## Notes: One-key solution for mounting/dismounting, supports spells, shapeshifting
## Notes-enGB: One-key solution for mounting/dismounting, supports spells, shapeshifting
## Notes-deDE: Ein-Tasten-Lösung für das Auf- und Absitzen von Reittieren, unterstützt auch Zaubersprüche und Gestaltwandlung
## Notes-esES: Una clave para la solución de montaje / desmontaje, apoya hechizos, shapeshifting
## Notes-esMX: Una clave para la solución de montaje / desmontaje, apoya hechizos, shapeshifting
## Notes-frFR: Une solution clé pour le montage / démontage, soutient sorts, shapeshifting
## Notes-ruRU: Одним из ключей решения для монтажа / демонтажа, поддерживает заклинаний, shapeshifting
## Notes-zhTW: 一鍵上下馬,支援召喚和變形
## Notes-koKR: 탈것의 타기/내리기를 위한 1 키 해결, 주문, 변신 지원
## Author: Gadgets (Tiker) @ Bleeding Hollow
## SavedVariablesPerCharacter: GoGo_Prefs GoGo_DebugLog
## SavedVariables: GoGoMount_MountSettings

GoGoMount.xml
154 changes: 77 additions & 77 deletions GoGoMount.xml
Original file line number Diff line number Diff line change
@@ -1,77 +1,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>
<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>
Loading