1. #1

    pet ability macro help

    I am toying with two macros at the moment -

    #showtooltip [pet:Spider] Web; [pet:Chimera] Froststorm Breath
    /cast [pet,mod:alt] [pet: Spider] web; [pet, mod:alt] [pet: Chimaera]Froststorm Breath;
    /cast [nomod] Concussive Shot;

    The aim of the macro is to either use the pets ability or concussive shot not both which is what it seems to be doing at the moment.

    The other was a more general one

    so instead of calling the command i susbstitute that with

    /click pet ability 4 (for example)
    Yesterday is history, today is a gift, tomorrow is mystery.

  2. #2
    Try the first one without "pet" in the first and third conditional [ ] brackets on the second line (and also just merge the 1st and 2nd and 3rd and 4th, with commas) I don't think it will take just "pet", only Pet:<something>.

    So:

    #showtooltip [pet:Spider]Web;[pet:Chimera]Froststorm Breath
    /cast [mod:alt,pet:Spider]Web;[mod:alt,pet:Chimaera]Froststorm Breath;
    /cast [nomod]Concussive Shot;

    For the second I'm not sure what you're looking for. But I believe if you use /click it has to be the UI's name for the button, not the ability name. You can find that by using /framestack .

    Also, when you're having problems with macros, put it in here:

    http://www.macroexplain.com/

    If something very simple is off you will know quickly.
    Last edited by Spiralphoenix; 2013-01-05 at 11:19 PM.

  3. #3
    Scarab Lord
    15+ Year Old Account
    Join Date
    Aug 2008
    Location
    Texas
    Posts
    4,040
    Your first one is incorrect in a way that it's causing you confusion. It's doing everything as "or", basically. Try this:
    Code:
    #showtooltip [pet:Spider] Web; [pet:Chimera] Froststorm Breath
    /cast [mod:alt, pet:Spider] Web; [mod:alt, pet:Chimera] Froststorm Breath; Concussive Shot
    Here's the breakdown:
    1) If using a Spider Pet, and pressing Alt, cast Web;
    2) If using a Chimera Pet, and pressing Alt, cast Froststorm Breath
    3) if some of these aren't true (using a pet that's not a Spider or Chimera, or not pressing alt), cast Concussive Shot.

Posting Permissions

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