Download
(48Kb)
Download
Updated: 11-28-12 12:52 PM
Pictures
File Info
Updated:11-28-12 12:52 PM
Created:05-05-09 02:35 AM
Downloads:52,511
Favorites:338
MD5:

GupPet  Popular! (More than 5000 hits)

Version: v2.106
by: Gupp [More]

What is GupPet:
GupPet is an add-on that gives an extension for mounting and calling critters. By a single click it mounts a ground, swimming or fly mount depending on the players location. Because most players have plenty of mounts and companions, and you probably like more than one, the add-on can randomly select mounts/companions depending on the selections in the option menu.

Basic Features:

  • Randomly selects a mount / companion location dependent.
  • Class support for Druids , Shamans and Mages.
  • Automatically summons a companion
  • 3d model preview
  • And many more ! ( Would be a to big list )
In game usage:
There are 3 types of controls.
  • Action buttons (Adds buttons and are move, hide and scalable.)
  • Key binds
  • Slash commands
How it works:
GupPet uses a small database to split the mounts that the player currently has learned. The splitting is based on type (ground, swimming or fly) and speed. When using the auto mount function the add-on will always try to select the fastest possible option, but if you can fly in an area the add-on select the flyable over the ground type. If your are swimming the aquatic will be selected above the other two types.

For the critters GupPet uses a small database to detect if a critter uses a type of reagent to call it, for some types you need a snowball. The add-on detects if you have that reagent with you and if not, the add-on won't select that type of critter.

Language support:
The languages that are currently supported are English , German ( Tnx to Farook at Curse) , Spanish ( Tnx to StiviS at Curse ) and Russian ( Tnx to StingerSoft at WowInterface.) With the none-supported languages the zone detection is not supported and therefore forces the two mount action buttons.

Commands
The start command is '/GP' or '/GupPet'. ( The mounting slash commands don't support abilities with spells )

Known Issues:
If you or a patch clears your WoW Cache folder, you may experience an invalid list of mounts or a failure to select some mounts for your first login after the cache was cleared. Try logging out and then back in.

------------------------------------------------------------------------
------- V 2.106
------------------------------------------------------------------------
- Fixed some bugs because blizzard changed something in there UI
- Added Obsidian Nightwing as MultiMount

------------------------------------------------------------------------
------- V 2.105
------------------------------------------------------------------------
- Removed the text that a mount is not found ... while it is ;)

-----------------------------------------------------------------------
------- V 2.104
------------------------------------------------------------------------
- Placed a workaround of the blizzard bug that the mounts get reordered ( Tnx Nizabel )

------------------------------------------------------------------------
------- V 2.103
------------------------------------------------------------------------
- Fixed the taint issues
- Removed the part where stealth would remove the companion

------------------------------------------------------------------------
------- V 2.102
------------------------------------------------------------------------
- The icon texture can now be set again
- Fixed the Auto Call Companion .. ( But changes the Filters off the Blizzard interface >< )
- Added ButtonFacade again

------------------------------------------------------------------------
------- V 2.101
------------------------------------------------------------------------
- Fixed a bug on the hunter class


------------------------------------------------------------------------
------- V 2.100
------------------------------------------------------------------------
- Fixed some bugs that came with the new patch ..
- Removed the buttonfacade for now
- Removed the collect me as its out of date

- For now auto summon for pets is disabled as its now totally broken
- Next version will fix the issue that characters have some unusable mounts ( lvl restriction or prof etc )


----
Rest of the change log is found in the ChangeLog.txt
----
Optional Files (0)


Post A Reply Comment Options
Unread 02-15-10, 07:34 PM  
VerasGunn
A Deviate Faerie Dragon

Forum posts: 18
File comments: 32
Uploads: 0
Speaking of skinner, I downloaded the lastest update for it today and upon loading my game GupPet seems glitched. Skinner isn't enabled, so I doubt it has anything to do with that, just happened at the same time.

My companions seem to summon, but my actual selection on what I want to randomly summon doesn't match with what is summoned. In order to get the proper pet to summon I had to move all of my checks up once. It's not really a big issue, just seems like a strange bug.
Report comment to moderator  
Reply With Quote
Unread 02-16-10, 11:01 AM  
Gupp
A Defias Bandit
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 134
Uploads: 4
Originally posted by VerasGunn
Speaking of skinner, I downloaded the lastest update for it today and upon loading my game GupPet seems glitched. Skinner isn't enabled, so I doubt it has anything to do with that, just happened at the same time.

My companions seem to summon, but my actual selection on what I want to randomly summon doesn't match with what is summoned. In order to get the proper pet to summon I had to move all of my checks up once. It's not really a big issue, just seems like a strange bug.
Really weird bug indeed .. Did you reload the game before you recheck them all ?
__________________
Report comment to moderator  
Reply With Quote
Unread 03-01-10, 12:31 PM  
Devius
A Kobold Labourer

Forum posts: 0
File comments: 103
Uploads: 0
Is there any way to completely disable forms on druids ?
I have unchecked all the form options but I still get flying form while jumping and travel form while in combat. I really love this addon but adding the forms was a total killer for me like other mount addons before it.
If not can you tell me how to do this in lua ?

Thanks for the great addon.
Report comment to moderator  
Reply With Quote
Unread 03-01-10, 01:31 PM  
Gupp
A Defias Bandit
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 134
Uploads: 4
Originally posted by Devius
Is there any way to completely disable forms on druids ?
I have unchecked all the form options but I still get flying form while jumping and travel form while in combat. I really love this addon but adding the forms was a total killer for me like other mount addons before it.
If not can you tell me how to do this in lua ?
Well you can disable is completely if you change some stuff in the lua.
If you put this code in the function "GupPet_UpdateClassDataList()" from line 361 in GupPet.lua after the IsInBook checks.
Code:
	
elseif GUPPET_TEMPCLASSDATA.Type == "DRUID" then
	
	GUPPET_TEMPCLASSDATA["Travel"]  = GupPet_IsInBook( GUPPET_CLASSDATA.DRUID.Travel ) ;
	GUPPET_TEMPCLASSDATA["SlowFly"] = GupPet_IsInBook( GUPPET_CLASSDATA.DRUID.SlowFly ) ;
	GUPPET_TEMPCLASSDATA["FastFly"] = GupPet_IsInBook( GUPPET_CLASSDATA.DRUID.FastFly ) ;
	GUPPET_TEMPCLASSDATA["Aquatic"] = GupPet_IsInBook( GUPPET_CLASSDATA.DRUID.Aquatic ) ;
	GUPPET_TEMPCLASSDATA["Cat"]  	= GupPet_IsInBook( GUPPET_CLASSDATA.DRUID.Cat ) ;
TO

Code:
elseif GUPPET_TEMPCLASSDATA.Type == "DRUID" then
	
	GUPPET_TEMPCLASSDATA["Travel"]  = GupPet_IsInBook( GUPPET_CLASSDATA.DRUID.Travel ) ;
	GUPPET_TEMPCLASSDATA["SlowFly"] = GupPet_IsInBook( GUPPET_CLASSDATA.DRUID.SlowFly ) ;
	GUPPET_TEMPCLASSDATA["FastFly"] = GupPet_IsInBook( GUPPET_CLASSDATA.DRUID.FastFly ) ;
	GUPPET_TEMPCLASSDATA["Aquatic"] = GupPet_IsInBook( GUPPET_CLASSDATA.DRUID.Aquatic ) ;
	GUPPET_TEMPCLASSDATA["Cat"]  	= GupPet_IsInBook( GUPPET_CLASSDATA.DRUID.Cat ) ;
	GUPPET_TEMPCLASSDATA["Travel"]["Usable"] = false ;
	GUPPET_TEMPCLASSDATA["Aquatic"]["Usable"] = false ;
	GUPPET_TEMPCLASSDATA["Travel"]["Usable"] = false ;
	GUPPET_TEMPCLASSDATA["SlowFly"]["Usable"] = false ;
	GUPPET_TEMPCLASSDATA["FastFly"]["Usable"] = false ;
__________________
Last edited by Gupp : 03-01-10 at 01:32 PM.
Report comment to moderator  
Reply With Quote
Unread 03-03-10, 03:15 PM  
Devius
A Kobold Labourer

Forum posts: 0
File comments: 103
Uploads: 0
Thank you very much for the fix. Works great.
Keep up the good work.
Report comment to moderator  
Reply With Quote
Unread 03-23-10, 03:07 PM  
brknsoul
A Deviate Faerie Dragon
AddOn Author - Click to view AddOns

Forum posts: 18
File comments: 160
Uploads: 2
GupPet: An unknown mount has been found. Please report this so that it can be added to future versions.
GupPet: Frosty Flying Carpet , 75596

;-)
Report comment to moderator  
Reply With Quote
Unread 03-24-10, 12:09 PM  
Gupp
A Defias Bandit
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 134
Uploads: 4
Originally posted by brknsoul
GupPet: An unknown mount has been found. Please report this so that it can be added to future versions.
GupPet: Frosty Flying Carpet , 75596

;-)
Update will be online soon
__________________
Report comment to moderator  
Reply With Quote
Unread 04-09-10, 08:40 AM  
pomr
A Kobold Labourer
 
pomr's Avatar

Forum posts: 1
File comments: 46
Uploads: 0
Keybind Text

Hey Gupp!

Absolutely love your addon, it is the best pet and mount manager out there in my honest opinion. I have a question for you, how do I get it to disable the Keybind Text on the In Game Buttons? I have the smart mount button assigned to ALT + Mouse Button Four and having that spelled out is a bit much.

Any guidance would be appreciated!

Keep up the stellar work.
Report comment to moderator  
Reply With Quote
Unread 04-13-10, 12:46 PM  
Gupp
A Defias Bandit
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 134
Uploads: 4
Re: Keybind Text

Originally posted by pomr
Hey Gupp!

Absolutely love your addon, it is the best pet and mount manager out there in my honest opinion. I have a question for you, how do I get it to disable the Keybind Text on the In Game Buttons? I have the smart mount button assigned to ALT + Mouse Button Four and having that spelled out is a bit much.

Any guidance would be appreciated!

Keep up the stellar work.
hmmz i can build in a option to hide the text .. will build it in later this week.
__________________
Report comment to moderator  
Reply With Quote
Unread 04-14-10, 02:40 PM  
Thanatos
A Murloc Raider

Forum posts: 9
File comments: 27
Uploads: 0
New Install

I just installed this

And it seems every time I dismount I get an error message

"You can't do that right now."

I've tried kebinding a button, the default auto-mount button. etc. I am not even summoning a pet right now.

I get this, as is, from a fresh install.

Any suggestions?
Report comment to moderator  
Reply With Quote
Unread 04-15-10, 10:46 AM  
Snoweh
A Cyclonian
 
Snoweh's Avatar
AddOn Author - Click to view AddOns

Forum posts: 43
File comments: 79
Uploads: 1
add the Steed! :P

[19:14:50] GupPet: An unknown mount has been found. Please report this so that it can be added to future versions.
[19:14:50] GupPet: Celestial Steed , 75614

Edit: Manually added myself for now
Last edited by Snoweh : 04-15-10 at 02:16 PM.
Report comment to moderator  
Reply With Quote
Unread 04-15-10, 03:13 PM  
Jimmerz28
A Kobold Labourer

Forum posts: 0
File comments: 42
Uploads: 0
In case anyone else wants to manually add it:

Modify GupPet_Data.lua and add
Code:
[75614] = {[1] = true, [2] = true, [11] = true, [12] = true, [13] = true}, -- Celestial Steed
I added it on line 372 after the Big Blizzard Bear mount.
Report comment to moderator  
Reply With Quote
Unread 04-16-10, 08:48 PM  
LittleWhiteDove
A Cobalt Mageweaver
 
LittleWhiteDove's Avatar

Forum posts: 227
File comments: 10
Uploads: 0
I am also gettung the message "You can't do that right now" Happens if when I use key binding to dismount or click on the addon button. Changing from ground mount to flying mount in Dalaran requires dismounting first. Also, sometimes need to dismount to get mining or prepare for a fight. Getting the error message all the time is annoying.

Any way to get rid of the message?
Report comment to moderator  
Reply With Quote
Unread 04-17-10, 11:49 AM  
Gupp
A Defias Bandit
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 134
Uploads: 4
Originally posted by Jimmerz28
In case anyone else wants to manually add it:

Modify GupPet_Data.lua and add
Code:
[75614] = {[1] = true, [2] = true, [11] = true, [12] = true, [13] = true}, -- Celestial Steed
I added it on line 372 after the Big Blizzard Bear mount.
That update is on its way to download.. Version 1.220
__________________
Report comment to moderator  
Reply With Quote
Unread 04-17-10, 01:01 PM  
Gupp
A Defias Bandit
AddOn Author - Click to view AddOns

Forum posts: 3
File comments: 134
Uploads: 4
Originally posted by LittleWhiteDove
I am also gettung the message "You can't do that right now" Happens if when I use key binding to dismount or click on the addon button. Changing from ground mount to flying mount in Dalaran requires dismounting first. Also, sometimes need to dismount to get mining or prepare for a fight. Getting the error message all the time is annoying.

Any way to get rid of the message?
Fixed in the latest version 1.221 .. Seems that commands VehicleExit() trows a error if your not in one
__________________
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: