Download
(6Kb)
Download
Updated: 12-24-12 02:27 AM
Updated:12-24-12 02:27 AM
Created:unknown
Downloads:14,066
Favorites:168
MD5:

Kennel  Popular! (More than 5000 hits)

Version: 5.1.0.16-Beta
by: Tekkub [More]

Kennel is a simple minipet addon, it automatically puts out a random pet whenever you need one. Kennel will not put out your pet if you are stealthed, mounted, flying, moving, casting, in an arena or BG. Kennel will also avoid putting out a pet in certain subzones where a quest summons a pet for you.

Visit my site for more great addons.
Please send all bugs, feature requests and questions to [email protected]

5.1.0.16-Beta
Fixes for 5.1
Addon is now much *much* simpler thanks to new macros
Favorite pets are used more often than others

5.0.1.15-Beta
Some fixes for 5.0

4.2.0.14-Beta
Don't put out xmas pets if we have no balls
Never put out "guild pets"
Nice new big config panel for 4.2

4.0.0.13-Beta
SEAHORSIE!
Add quick config access button to pet panel

3.2.0.12-Beta
Fix nil error in config
No petting while falling

3.1.0.11-Beta
De-localize buff checks (thanks Adirelle)
Don't put pet out if channelling (thanks Adirelle)

3.1.0.10-Beta
Add per-zone pet options
Add weighted-random summon options
Don't put out pet if eating or drinking

3.0.9.9-Beta
Add option to dismiss pet when mounted

3.0.9.8-Beta
Add scrollbar, for those fuckers tha have more pets than me.
Don't put pets out when priests proc improved death

3.0.3.7-Beta
Add config to disable pets, or the entire addon

3.0.3.6-Release
Failsafe for cases where you are not in combat when a pet is needed, but you enter combat before it gets put out
SAY IT FRENCHIE! SAY "Throne of Kil'jaeden"

3.0.3.5-Release
ruRU subzone

3.0.2.4-Release
No need to check movement, pets don't have a cast time anymore

3.0.2.3-Release
Don't summon at Throne of Kil'jaeden
Don't do crap when stealthed either
Don't do anything when in BG or arena
Don't put out pet when flying (silly druids)

3.0.1.2-Beta
Complete rewrite for wrath
Now summons pets automatically!
Beta Files (1)
File Name
Version
Hits
Size
Author
Date
4.2.0.14-Beta
1,242
14kB
Tekkub
07-23-11 10:58 PM


Optional Files (0)


Post A Reply Comment Options
Unread 11-16-08, 01:16 AM  
Recluse
A Cliff Giant
 
Recluse's Avatar
AddOn Author - Click to view AddOns

Forum posts: 70
File comments: 94
Uploads: 13
Originally posted by ThePooBurner
Not having the pet auto put out when you are dismounted while in combat would be a good thing. Not being able to cast spells instantly (as the GCD is still triggered. at least on my computer it is) to retaliate hurts a bit.
Due to the following, that shouldn't happen. I've not tested it, but after reading this, I was going to make the modifications for my copy, but it doesn't appear to be necessary. Are you certain you were in combat at the time?
Code:
if InCombatLockdown() then return self:RegisterEvent("PLAYER_REGEN_ENABLED") end
__________________
We'd be together, but only diamonds last forever...
Report comment to moderator  
Reply With Quote
Unread 11-15-08, 08:54 PM  
ThePooBurner
A Kobold Labourer
 
ThePooBurner's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1
File comments: 25
Uploads: 3
Not having the pet auto put out when you are dismounted while in combat would be a good thing. Not being able to cast spells instantly (as the GCD is still triggered. at least on my computer it is) to retaliate hurts a bit.
Report comment to moderator  
Reply With Quote
Unread 11-13-08, 07:02 AM  
Manaman
An Aku'mai Servant
AddOn Author - Click to view AddOns

Forum posts: 39
File comments: 160
Uploads: 1
Falling

Druids are able to go into flight form when falling, but if this mod decides to bring out a minipet during free fall, it will trigger GCD and prevent flight form for that time period. This can lead to death depending on if GCD before having a chance to save yourself from falling. If there is any chance you could detect falling and disable autominipet during that? I love this mod btw. Good work.
Report comment to moderator  
Reply With Quote
Unread 11-08-08, 02:35 AM  
Samasnier
A Deviate Faerie Dragon
 
Samasnier's Avatar

Forum posts: 13
File comments: 47
Uploads: 0
Kennel doesn't play nicely when you're trying to do the Hellfire Peninsula daily "Blast the Gateway". That's the one where you take the temporary mini-pet spark and grow it by killing fire elementals. Kennel insists on summoning a "real" minipet, making the temporary one disappear.

Needless to say, reloading my interface before and after doing that daily is...inconvenient.
Report comment to moderator  
Reply With Quote
Unread 11-02-08, 08:23 PM  
Lorelei
A Kobold Labourer

Forum posts: 1
File comments: 19
Uploads: 0
One thing that would be useful would be the ability to exclude certain pets. Specifically, I'd like to exclude the various winter pets that require a snowball to summon, because I generally don't have any on me.
Report comment to moderator  
Reply With Quote
Unread 10-25-08, 07:24 PM  
Maziel
A Deviate Faerie Dragon
 
Maziel's Avatar
AddOn Author - Click to view AddOns

Forum posts: 18
File comments: 152
Uploads: 7
I like this mod, thank you for your time on it.

I was wondering if anyone can point me to a mod, or if anyone can do up a mod that allows us to re-order our pets to whatever order we wish them to be in.

I don't want the pet frame to look different, kind of like it how it is, but would love to be able to drag and drop pets, shuffle them around to my order instead of the order they currently are.

Any thoughts or suggestions?

Thanks, and thanks again for this pet summoner, it's fun. =)
Report comment to moderator  
Reply With Quote
Unread 10-22-08, 08:59 AM  
ezarra
A Flamescale Wyrmkin
AddOn Author - Click to view AddOns

Forum posts: 123
File comments: 47
Uploads: 2
Quick fix:

Code:
if numpets > 0 then 
  local throne = GetSubZoneText();
  if throne ~= "Throne of Kil'jaeden" then
    CallCompanion("CRITTER", math.random(numpets));
  end
end
Last edited by ezarra : 10-22-08 at 09:48 AM.
Report comment to moderator  
Reply With Quote
Unread 10-20-08, 01:27 PM  
Malreth
A Murloc Raider
AddOn Author - Click to view AddOns

Forum posts: 9
File comments: 9
Uploads: 3
It'd be nice if Kennel didn't autosummon pets when in battlegrounds.
Report comment to moderator  
Reply With Quote
Unread 08-04-08, 12:03 PM  
Tekkub
A Molten Giant
 
Tekkub's Avatar
AddOn Author - Click to view AddOns

Forum posts: 960
File comments: 334
Uploads: 67
With the new API pets can be put out automatically, there's no need to put it in Cork,which is designed for thinks that the player must do (cast)

And yes, Cork's finally getting the rewrite it's needed for years thanks to new API from Blizzy.
Report comment to moderator  
Reply With Quote
Unread 08-04-08, 03:38 AM  
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1710
File comments: 1222
Uploads: 43
Originally posted by Tekkub
Don't fear, I have plans. Can anyone say random pet/mount macros?
Didnt this addon forfill the current features of CorkFu (as in Kennel only swaps the pets while CorkFu uses it randomly?)

But yeah, a random pet/mount macro would be neat
Report comment to moderator  
Reply With Quote
Unread 07-28-08, 10:37 PM  
Tekkub
A Molten Giant
 
Tekkub's Avatar
AddOn Author - Click to view AddOns

Forum posts: 960
File comments: 334
Uploads: 67
Originally posted by p3lim
New changes to the expansion beta, making this addon no longer needed once expansion hits.
Don't fear, I have plans. Can anyone say random pet/mount macros?
Report comment to moderator  
Reply With Quote
Unread 07-28-08, 10:30 PM  
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view AddOns

Forum posts: 1710
File comments: 1222
Uploads: 43
New changes to the expansion beta, making this addon no longer needed once expansion hits.

* New Vanity Pet and Mount changes: Players will now be able to access their non-combat pets and mounts by clicking on the pets tab in the Character Info panel. These pets and mounts will be now learnable much like spells or abilities. Once a vanity pet or mount is learned, the icon will disappear from within a player's inventory and reappear in the appropriate tab under the pet tab under Character Info. Say goodbye to your vanity pets and mounts taking up bag and bank slots!
Report comment to moderator  
Reply With Quote
Unread 05-16-08, 08:45 PM  
rlenny
A Kobold Labourer
 
rlenny's Avatar

Forum posts: 0
File comments: 4
Uploads: 0
Originally posted by Tekkub
Cork is in the process of a massive rewrite.
Sounds good! thx for the quick reply, ill have to keep my eye on it; in the mean time the current(.56) is a good buff watcher minus the click functionality.

Keep up the great mod-work !

-Lorelei of Lightninghoof
Report comment to moderator  
Reply With Quote
Unread 05-16-08, 08:39 PM  
Tekkub
A Molten Giant
 
Tekkub's Avatar
AddOn Author - Click to view AddOns

Forum posts: 960
File comments: 334
Uploads: 67
Cork is in the process of a massive rewrite.
Report comment to moderator  
Reply With Quote
Unread 05-16-08, 07:24 PM  
rlenny
A Kobold Labourer
 
rlenny's Avatar

Forum posts: 0
File comments: 4
Uploads: 0
Question Wrong place but still

Hey tek,
U mention corkfu in your post for Kennel, and when i checked it out i realized it is just what im looking for.
I found the latest version at files.wowace.com (.56), aceupdater has an old version; but after installin it i have failed to get it running.
It shows up on fubar except it wont accept any mouse commands to activate the buffs, etc.

btw i couldnt find a proper forum to post this in, considering kennel was just updated i figured id give it shot here.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump:

Support AddOn Development!

You have just downloaded by the author . If you like this AddOn why not consider supporting the author? This author has set up a donation account. Donations ensure that authors can continue to develop useful tools for everyone.