• World of Warcraft Addons
  • World of Warcraft
  • Average Rating:

  • Your Rating

  • Share
  • Report Abuse

Pokedex

 

Project Updated:
Files Updated: Wed, Oct 21 2009
Supports Game Version: 3.2.0
Category: Bags & Inventory, and Roleplay
Tags:

[Edit Tags]

Project Manager: stencil
Additional Authors: No additional authors
Current Version: Release v3.2.02
License: All Rights Reserved
Development Site: WowAce.com
Avg Daily DL (last 30 days): 14
Downloads Total: 4,435
Favorites: 7
Comments: 12
  • Contests
  • About Pokedex
  •  

Allows random summoning of mounts and critters using weighted preference values set by user. Can also randomly set character title on load based on same user ranking principles. Will summon appropriate mount based on what zone supports.

  • Downloads (5)
  •  
File Name Release Type Game Version Downloads Date
Addon Curse.com Beta 2.3.3 0 9/29/2008
  File Name Release Type Game Version Downloads Date  
  Pokedex Release v3.2.02 Release 3.2.0 281 10/21/2009
  Pokedex Release v3.2.01 Release 3.2.0 90 10/19/2009
  Pokedex Release v3.2.00 Release 3.2.0 836 8/4/2009
  Pokedex Release v3.1.02 Release 3.1.0 357 7/3/2009
  Pokedex Release v3.1.01 Release 3.1.0 791 4/23/2009
  • 1 page(s)
  • Comments

Add Comment  

Add

You need to login or register to post.

Benefits of Registration

  • Interact with hundreds of thousands of other gamers on an open social network.
  • Post your stories, news, images, videos, and other content to share.
  • Create a network with your fellow gamers or join an existing one.
  • Gain reputation for everything you do.
  • wingznut said 

    As of the latest patch (or maybe the prior one), you can now fly in Wintergrasp, but Pokedex doesn't seem to know this.
    Seems like it may be a fairly simple code edit. Anyone know of a fix?

    Reply Report Permalink
  • stencil said 

    Hmmm, I thought WG was like Dalaran; you could fly over it but once you got down in the zone you couldn't get on a flyer again. Very easy fix to make, should be up soon.

    Reply Report Permalink
  • As a Druid, I'd love to be able to have Pokedex support flying form as a preferred mount in Outland and beyond. Any plans to incorporate this feature?

    Reply Report Permalink
  • stencil said 

    Apologies for the long gap before apply; apparently I didn't have it set to mail me whenever a comment was made like I thought I had. I also have a druid and so see your point. But I stayed away from putting too much effort into figuring it out because I'm not sure it would work or would be complicated.

    A long way back blizz changed things to break addons like Decursive that used to basically do the thinking for you and then cast a spell. Well, flight form is a spell, and therefore its protected. And I'm not really familiar with how to work with protected functions.

    Anyway, I can provide you with this macro that seems to do what you'll want. It should use flight form when you can fly and then use pokedex to select amongst your ground bound mounts when you can't:

    /cast [nostance:5,nomod,flyable]Swift Flight Form;
    /pd ToggleMount
    /cancelform [stance:5]

    Reply Report Permalink
  • maxloss said 

    Just a question: which rank provides the best chance to summon each mount or pet: 0 or 10 ? I know this might be obvious, but experience and diffent trials show that it's not that obvious to me ^^

    Reply Report Permalink
  • stencil said 

    10 is the best chance. 0 means no chance and the pet will never be summoned.

    Reply Report Permalink
  • stencil said 

    Requested feature added: summon next companion or next mount in list from current position. Useful for when instead of going random you just want to iterate through a few to something you want.

    Reply Report Permalink
  • stencil said 

    New feature: we'll now only try to summon companions that require a snowball as a reagent if you actually have snowballs in your inventory. This should get rid of some annoying errors.

    Reply Report Permalink
  • stencil said 

    updated toc for patch

    Reply Report Permalink
  • tihutoha said 

    Downloaded this after being frustrated with a macro a friend shared to randomize pets. The macro works great, but everytime you get a new pet, you have to modify the numbers in it. Also, being limeted to 255 characters sucks.

    In short, I love your program. Is there a button or something somewhere that i'm missing? I hope I don't need to go to the programs setup to summon or dismount everytime. Thanks, Mike.

    Reply Report Permalink
  • Pokli said 

    The README.txt that comes with pokedex seems to suggest that you use /pd sm or /pd SummonMount to summon and /pd dm or /pd DismissMount to dismiss a mount.

    Reply Report Permalink
  • stencil said 

    Yep, the readme lists commands that you can either use from the chat command line or put into a macro. Or, if you hit escape and select Key Bindings, there's a Pokedex section where you can directly bind the commands to keys - for example, I bind ToggleMount to the H (for horse, heh) key.

    Reply Report Permalink
  • tuque said 

    Something's wrong with it today. I'm in Dalaran and I'd get "you cannot summon that here" or something (assuming it's trying to do a flying mount), and would summon the slow mounts too.

    Reply Report Permalink
  • tuque said 

    Same thing in SW and STV now. So prob entire zone detect and stuff broke

    Reply Report Permalink
  • stencil said 

    I'm sorry to hear that ... it seems to be working fine for me. Has it worked for you in the past, or was this your first time using the addon.

    Right now I don't really have diagnostic capalities built in - about the only one is that use can use the command "/pd zone" and we'll output the current continent number, the name of the zone and the name of the subzone. fFlyable is initialized as false and set to true if:
    if 3 == continent then fFlyable = true end
    if 4 == continent and IsUsableSpell(L["Cold Weather Flying"]) then
    local strZone = GetZoneText()
    if strfind(strZone, L["Dalaran"]) then
    fFlyable = strfind(GetSubZoneText(), L["Krasus' Landing"])
    else
    fFlyable = not strfind(strZone, L["Wintergrasp"]) and not strfind(strZone, L["The Obsidian Sanctum"])
    end
    end

    So, I guess the one thing you could do then is double check that in the options UI that all the mounts seem to be categorized correctly and that /pd zone returns values that we'd recognize as being correct for that location.

    Reply Report Permalink
  • Pokli said 

    Yesterday in Dalaran it told me "cannot do whatever", too, but trying again just 10 minutes ago everything seemed to work fine.

    Reply Report Permalink
  • Woot awesome ty!!!

    Reply Report Permalink
  • stencil said 

    new version uploaded - should work around the cache invalidation problem that happens on big patches that required you to reload ui

    Reply Report Permalink
  • thanks. :)

    Reply Report Permalink
  • After 3.08, this mod can't find any of my mounts or pets. I'll grab an error report and post it here as soon as I can.
    --Aahz

    Reply Report Permalink
  • Similar Addons
  •  

Average downloads per day

  1. 5,620 Bagnon Bags & Inventory
  2. 3,623 RatingBuster Tooltip, and Bags & Inventory
  3. 2,207 ArkInventory Bags & Inventory
  4. 1,883 Outfitter Bags & Inventory, PvP, and...
  5. 1,395 EPGPLootmaster Chat & Communication, Bags...