Category: Graphic UI Mods
Addon Information
Download Latest Version.
To add favorites please register for a free account. If you already have one you need to login. How do I install this? (FAQ)
Syzgyn's Portal Bug Reports Feature Requests
Author:
Version:
0.4.1
Date:
01-23-2009 02:45 PM
Size:
3.22 Kb
Downloads:
7,492
Favorites:
161
MD5:
Pictures
Click to enlarge
PetList+   Popular! (More than 5000 hits)
I disliked how the new Companion and Mount frames displayed the list of companions, so I created this mod to make it easier to go through the list, especially if you have large numbers of Critters or Mounts to page through.

It gives the Companion Frame a new layout, leading to better ease of use. It is also very tiny, coming in at a miniscule 16KiB.

Additionally I've added a button to summon a random non-combat pet. You can click it in the interface, or use a macro with the text:
/click PetListClickRandom
  Change Log - PetList+
0.4.1
- Added total mounts/pets text next to the close button.
0.4
- Fixed display issues for people with actual pets. Buncha whiners.
0.3
- Added tooltips
- Added random pet button
0.2
- Fixed bug with dragging spells.
0.1
- Initial Commit
  Archived Versions - PetList+
File Name
Version
Size
Author
Date
0.4
3kB
Syzgyn
10-17-2008 10:02 PM
  Comments - PetList+
Post A Reply Comment Options
Old 08-06-2009, 04:39 PM  
Syzgyn
An Aku'mai Servant
 
Syzgyn's Avatar
Interface Author - Click to view interfaces

Forum posts: 37
File comments: 75
Uploads: 6
Quote:
Originally posted by Kerecha
After patch this seems completely broken.
Can you be more specific? What error is it throwing?
Syzgyn is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 08-06-2009, 11:20 AM  
Kerecha
A Murloc Raider
 
Kerecha's Avatar

Forum posts: 8
File comments: 148
Uploads: 0
After patch this seems completely broken.
Kerecha is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 05-03-2009, 11:33 AM  
Twidget
A Fallenroot Satyr
 
Twidget's Avatar

Forum posts: 23
File comments: 251
Uploads: 0
Re: compatibility with nugminipet

Quote:
Originally posted by kullerkugel
some sidenote: i often browse my pet list looking for some special pet. then the tooltips at the mouse cursor are really annoying. maybe you could prevent those tooltips from showing up? the only information you get out of them is if a pet needs some reagents for summoning. so maybe just show a tooltip or icon at those 2-3 pets and nothing for the rest.
I too find the tooltip annoying. Since there has not been an update to this mod in quite awhile I am not sure if it is still being maintained so if you would like to fix it yourself this is what I did.
Open the Main.lua file and find the following line:

GameTooltip:SetOwner(button, "ANCHOR_CURSOR")

Comment it out by adding 2 dashes in front of it so it looks like this:

-- GameTooltip:SetOwner(button, "ANCHOR_CURSOR")

Now, just add the following line right below the one you just commented out:

GameTooltip:SetOwner(PetListPlusFrame, "ANCHOR_RIGHT", -30, -90)

This will move the tooltip to the upper right outside corner of the list frame. If you don't like the exact placement you can edit the x and y coordinates (the -30 and -90).

Hope this helps,
Twidget
Twidget is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 01-18-2009, 06:10 AM  
kullerkugel
A Kobold Labourer
Interface Author - Click to view interfaces

Forum posts: 0
File comments: 9
Uploads: 1
compatibility with nugminipet

this addon really makes life easier when running around with 50 pets!

now i'd really like to use NugMiniPet (http://www.wowinterface.com/download...iPet.html#info), too. There arise problems, because both addons alter blizzards original pet frame, but for different purposes. maybe you could hook up with its author and make your two addons work together. that would really be cool

some sidenote: i often browse my pet list looking for some special pet. then the tooltips at the mouse cursor are really annoying. maybe you could prevent those tooltips from showing up? the only information you get out of them is if a pet needs some reagents for summoning. so maybe just show a tooltip or icon at those 2-3 pets and nothing for the rest.
kullerkugel is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-11-2008, 12:01 PM  
Syzgyn
An Aku'mai Servant
 
Syzgyn's Avatar
Interface Author - Click to view interfaces

Forum posts: 37
File comments: 75
Uploads: 6
Quote:
Originally posted by IceShadow
This is great, I made myself some buttons. Do you mind giving me some help trying to figure out how to save the selected pet through session per char? That way it will really remember the last pet selected . Sorry, I'm not good with lua stuff. Really slow with it.
Take a look at wowwiki's tutorial on saved variables for how to save data per session. You'll wanna save PetListPlus.selected.CRITTER whenever you pull a pet out.
Syzgyn is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-10-2008, 05:46 PM  
IceShadow
A Deviate Faerie Dragon
 
IceShadow's Avatar

Forum posts: 13
File comments: 70
Uploads: 0
Quote:
Dismiss Pet:

Code:
DismissCompanion("critter")
Last Pet / Currently selected pet:

Code:
CallCompanion("critter", PetListPlus.selected.CRITTER)
This is great, I made myself some buttons. Do you mind giving me some help trying to figure out how to save the selected pet through session per char? That way it will really remember the last pet selected . Sorry, I'm not good with lua stuff. Really slow with it.
IceShadow is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-09-2008, 07:04 PM  
Syzgyn
An Aku'mai Servant
 
Syzgyn's Avatar
Interface Author - Click to view interfaces

Forum posts: 37
File comments: 75
Uploads: 6
Quote:
Originally posted by IceShadow
I felt like I was annoying you for awhile there. So I'll try again.

Think you could add a couple of buttons near the random pet button? One to remember the last pet you summoned, and to summon it, "Last Pet". The other button to dismiss pet, since if you want to dismiss the pet you have to scroll through the list to find it then click it again, which isn't so bad but it would be easier with a "Dismiss Pet" button.

Hope it's not annoying to ask, love the addon and appreciate it very much.
I wasn't annoyed don't worry

I'm pretty much done with this addon though. Adding more features I wont use isn't my idea of keeping something small and sleek. Here's some code you can use in macros or your own addon for the features you want though.

Dismiss Pet:
Code:
DismissCompanion("critter")
Last Pet / Currently selected pet:
Code:
CallCompanion("critter", PetListPlus.selected.CRITTER)
Syzgyn is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 11-09-2008, 04:55 PM  
IceShadow
A Deviate Faerie Dragon
 
IceShadow's Avatar

Forum posts: 13
File comments: 70
Uploads: 0
I felt like I was annoying you for awhile there. So I'll try again.

Think you could add a couple of buttons near the random pet button? One to remember the last pet you summoned, and to summon it, "Last Pet". The other button to dismiss pet, since if you want to dismiss the pet you have to scroll through the list to find it then click it again, which isn't so bad but it would be easier with a "Dismiss Pet" button.

Hope it's not annoying to ask, love the addon and appreciate it very much.
IceShadow is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-23-2008, 03:13 AM  
Syzgyn
An Aku'mai Servant
 
Syzgyn's Avatar
Interface Author - Click to view interfaces

Forum posts: 37
File comments: 75
Uploads: 6
Possible, yes. Feasable, not really. And way beyond the scope of this addon.
Quote:
Originally posted by IceShadow
Mind if I make a request that may or may not be possible?

Would it be possible to have some way to inspect other peoples pets/mounts, to compare them somehow.. if they also have the addon? It would be kind of cool to see which pets I am missing from my friends and which they are missing that I have. Doesn't really need to show 3d model even.

Possible?
Syzgyn is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-22-2008, 10:48 PM  
IceShadow
A Deviate Faerie Dragon
 
IceShadow's Avatar

Forum posts: 13
File comments: 70
Uploads: 0
Mind if I make a request that may or may not be possible?

Would it be possible to have some way to inspect other peoples pets/mounts, to compare them somehow.. if they also have the addon? It would be kind of cool to see which pets I am missing from my friends and which they are missing that I have. Doesn't really need to show 3d model even.

Possible?
IceShadow is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-21-2008, 02:52 PM  
Syzgyn
An Aku'mai Servant
 
Syzgyn's Avatar
Interface Author - Click to view interfaces

Forum posts: 37
File comments: 75
Uploads: 6
Like I said, you can maneuver the model however you'd like with the mouse. I'll add some code so the position is saved for all the models, and through logout.
Quote:
Originally posted by IceShadow
Nah I mean the box size, so it can be a little bigger so the big mounts, like bear arn't clipping out of it so much. Also meant a way to save the facing of the model at a certain direction, or maybe have it set to default at an angle instead of facing the person all the time.

\ instead of | <-- model
Syzgyn is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-21-2008, 02:39 PM  
IceShadow
A Deviate Faerie Dragon
 
IceShadow's Avatar

Forum posts: 13
File comments: 70
Uploads: 0
Quote:
Originally posted by Syzgyn
You mean the 3D model? It's totally controllable with the mouse. You can rotate, drag, and zoom it in and out. Having a variable size for it is beyond the scope of this addon though.
Nah I mean the box size, so it can be a little bigger so the big mounts, like bear arn't clipping out of it so much. Also meant a way to save the facing of the model at a certain direction, or maybe have it set to default at an angle instead of facing the person all the time.

\ instead of | <-- model

Last edited by IceShadow : 10-21-2008 at 02:40 PM.
IceShadow is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-21-2008, 11:33 AM  
Syzgyn
An Aku'mai Servant
 
Syzgyn's Avatar
Interface Author - Click to view interfaces

Forum posts: 37
File comments: 75
Uploads: 6
You mean the 3D model? It's totally controllable with the mouse. You can rotate, drag, and zoom it in and out. Having a variable size for it is beyond the scope of this addon though.
Quote:
Originally posted by IceShadow
I like this a lot, thanks for the addon.

Would it be possible to add a feature to adjust the graphic window size though? Oh and also the angle of the graphic to the side a little bit like default UI has?

Thanks!
Syzgyn is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-20-2008, 06:43 AM  
Cargor
A Flamescale Wyrmkin
 
Cargor's Avatar
Interface Author - Click to view interfaces

Forum posts: 127
File comments: 242
Uploads: 17
Wow, great thing!
Just thought about making a scrollable pet list as well and started scripting yesterday - then I noticed your addon!
Seems like I can stop scripting now
__________________
« Homepage | Git »

My blog is finally getting english!
Cargor is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Old 10-19-2008, 09:29 PM  
IceShadow
A Deviate Faerie Dragon
 
IceShadow's Avatar

Forum posts: 13
File comments: 70
Uploads: 0
I like this a lot, thanks for the addon.

Would it be possible to add a feature to adjust the graphic window size though? Oh and also the angle of the graphic to the side a little bit like default UI has?

Thanks!

Last edited by IceShadow : 10-19-2008 at 09:31 PM.
IceShadow is offline Report comment to moderator   Edit/Delete Message Reply With Quote
Post A Reply



Category Jump:




The Network:
EQInterface | EQ2Interface | LoTROInterface | MMOInterface | War.MMOUI | WoWInterface | VGInterface | Allakhazam | Thottbot | Wowhead | Zam


©2009 MMOUI / ZAM Network
vBulletin - Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.