1. #1

    New Hunter pet macro

    Does anyone know how to make a macro that changes depending on the pet I have in call pet?

    for instance if call pet one had a pet named bob i want a macro that will say "Go Bob" but if i change the pet to say joe i want the macro to say " go joe" is this possible?

  2. #2
    A regular macro can't say different things depending on different spells.

    You can try an addon like this: http://wow.curse.com/downloads/wow-a...akinspell.aspx

    Gershuun @ Borean Tundra US - Interface & Macros Moderator

  3. #3
    It may be possible to have a macro which will announce based on the current pet already summoned, but having one based on the call pet will be reliant on being able to access that through the API.
    As to whether you can do that or not I am not sure.

  4. #4
    Are macros able to work with some sort of /target pet command?

    If a 'general' target pet command would work, couldn't you set the macro to target your pet, /s "Go %t!", then target your last target?

    ((I don't know TOO much about macros, so....))


    EDIT:

    Guess I didn't too clearly see what you were asking. REALLY not sure that a macro can differentiate between the different "Call Pet"s at this point...
    Last edited by Daetur; 2010-10-18 at 07:21 AM.

  5. #5
    The following will announce in say "Go [petname]!" for whichever pet you currently have summoned.

    Code:
    /run SendChatMessage("Go " .. UnitName("pet") .. "!", "SAY");
    That should I think work fine in a macro.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •