4671cbd714
- Russian localization (by Maus) - FishingSchools: track fishing pools, Gatherer integration - FishingOutfitter: Outfitter addon integration - Interface 11200 (patch 1.12 support) - Improved options system with dependencies - Better watcher frame positioning - Various bugfixes Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
47 lines
1.3 KiB
XML
Executable File
47 lines
1.3 KiB
XML
Executable File
<Bindings>
|
|
<!-- window commands -->
|
|
<Binding name="FISHINGBUDDY_TOGGLE" header="FISHINGBUDDY_BINDINGS">
|
|
if ( keystate == "down" ) then
|
|
FishingBuddy.Command("");
|
|
end
|
|
</Binding>
|
|
<Binding name="TOGGLEFISHINGBUDDY_LOC">
|
|
if ( keystate == "down" ) then
|
|
ToggleFishingBuddyFrame("FishingLocationsFrame");
|
|
end
|
|
</Binding>
|
|
<Binding name="TOGGLEFISHINGBUDDY_OUT">
|
|
if ( keystate == "down" ) then
|
|
ToggleFishingBuddyFrame("FishingOutfitFrame");
|
|
end
|
|
</Binding>
|
|
<Binding name="TOGGLEFISHINGBUDDY_TRK">
|
|
if ( keystate == "down" ) then
|
|
ToggleFishingBuddyFrame("FishingTrackingFrame");
|
|
end
|
|
</Binding>
|
|
<Binding name="TOGGLEFISHINGBUDDY_OPT">
|
|
if ( keystate == "down" ) then
|
|
ToggleFishingBuddyFrame("FishingOptionsFrame");
|
|
end
|
|
</Binding>
|
|
<!-- commands -->
|
|
<Binding name="FISHINGBUDDY_SWITCH">
|
|
if ( keystate == "down" ) then
|
|
FishingBuddy.Command(FishingBuddy.SWITCH);
|
|
end
|
|
</Binding>
|
|
<Binding name="FISHINGBUDDY_GOFISHING">
|
|
if ( keystate == "down" ) then
|
|
FishingBuddy.SuitUpAndGoFishing();
|
|
end
|
|
</Binding>
|
|
<!-- Hidden bindings -->
|
|
<Binding name="FISHINGBUDDY_PERFORMCAST" runOnUp="true" hidden="true">
|
|
if ( keystate == "up" ) then
|
|
FishingBuddy.PerformCast();
|
|
else
|
|
FishingBuddy.UpdateBindings(false);
|
|
end
|
|
</Binding>
|
|
</Bindings> |