- Home
- Downloads
-
Addons & Mods
Featured
World of Warcraft
4,842 Addons
-
Popular Downloads
- Top World of Warcraft Addons
- Top Rift Addons
- Top Skyrim Mods
- Top Minecraft Server Mods
- Top Terraria Maps
- Top Starcraft II Maps
- Top Runes of Magic Addons
- Top Warhammer Online Addons
- Top Age of Conan Addons
-
- Curse Client
- Premium
- News
- Giveaways
- Forums
Pocket Stable
- 0 Likes
- World of Warcraft
- 2,839 Downloads
- Supports: 3.2.0
- 0 Average Daily Downloads
- Comments
- Created 12/3/2008 3:46:46 PM
- Updated 7/9/2011 2:30:50 PM
- 28 Favorites
- Project Site
- License: All Rights Reserved
- Release Type: Inactive
- Newest File: Pocket Stable 1.4
About Pocket Stable
An addon to help you access your (favorite) mounts.
PLEASE NOTE: If you still have any version of this addon prior to 2.x installed, you will want to remove the folder and all files. I have renamed the addon folder and files, as there are other addons now which use the same folder name this addon had been using.
Based on Pocket Menagerie, by Dourd. For more info, please check out his addon page.
Instructions
The first time you run the addon, there will be a button in the middle of your screen that looks like a hoof.
Hovering over this button shows your Favorites Bar (this will be blank at first)
- Hold the Right Mouse Button to drag this Button wherever you want
- Left Click The Mouse to bring up the main Mount Stable Screen.
Main Mount Stable Screen
This screen shows all of your mounts in one large grid at the bottom of the window, and at the top, is a list of your 10 favorite mounts.
- Left Click a mount will summon it.
- Right Click a mount will add it to your Favorites Bar.
You can remove a mount from your favorites by Right Clicking on it.
Patch 3.2.0 TOC Interface Number Update
Added more rows to accomodate the increase in total available mounts.
| File Name | Release Type | Game Version | Downloads | Date |
|---|---|---|---|---|
| Pocket Stable 2.0beta | Beta | 4.2 | 69 | 7/9/2011 2:30:50 PM |
| Pocket Stable 1.4 | Release | 3.2.0 | 1,070 | 8/5/2009 2:50:26 PM |
| Pocket Stable 1.3 | Release | 3.1.0 | 635 | 4/14/2009 12:36:43 PM |
| Pocket Stable 1.2.1 | Release | 3.0.8 | 662 | 2/9/2009 8:54:58 PM |
| Pocket Stable 1.2 | Release | 3.0.8 | 169 | 2/8/2009 5:13:04 PM |
| Pocket Stable 1.0 | Release | 3.0.3 | 412 | 12/3/2008 3:47:49 PM |
Comments
Add this section of code to the very bottom of Stable.lua:
--CODE
local stableFrameTimer = 0.0;
local stableFrameShouldHide = false;
local stableFrameHideDelay = 0.3;
function StableFrameTimerReset(shouldHide)
stableFrameTimer = 0.0;
stableFrameShouldHide = shouldHide;
end
function StableFrameTimerOnUpdate(self, elapsed)
if (not stableFrameShouldHide) then return; end
stableFrameTimer = stableFrameTimer + elapsed;
if (stableFrameTimer
stableFrameTimer = stableFrameTimer - floor(stableFrameTimer);
end
--CODE
Then overwrite lines 119-128 with this code:
--CODE
f:SetScript("OnEnter",function()
StableFrameTimerReset(false);
if not (Stable:IsVisible()) then StableQuickButtonFrame:Show() end;
GameTooltip:SetOwner(this, "ANCHOR_BOTTOMLEFT", 0, 5);
GameTooltip:AddLine("|cFF1199FFPocket Stable");
GameTooltip:AddLine("|cFF00FF00[Left Click]|r Open Main Window");
GameTooltip:AddLine("|cFF00FF00[Right Click]|r Drag to move this button");
GameTooltip:Show()
end )
f:SetScript("OnLeave",function() StableFrameTimerReset(true); GameTooltip:Hide() end)
f:SetScript("OnUpdate",StableFrameTimerOnUpdate);
--CODE
Then add this line just below line 58:
--CODE
StableFrameTimerReset(false)
--CODE
And finally, overwrite line 37 with these lines:
--CODE
f:SetScript("OnLeave",function() StableFrameTimerReset(true) end )
f:SetScript("OnEnter",function() StableFrameTimerReset(false) end )
f:SetScript("OnUpdate",StableFrameTimerOnUpdate);
--CODE
Obviously, don't include the "--CODE" lines, those are just for readability.
Thanks!!! :D!