1. #1

    Scatter Focus or Mouseover Target

    Hi I'm having trouble making a macro, these are the things I want it to do:

    Scatter Shot my focus target (IF I have one.)
    If I don't have a focus target Scatter Shout my mouseover.

    Thanks ahead of time!

  2. #2
    Deleted
    Code:
    #showtooltip
    /cast [@focus,harm,nodead][@mouseover]Scatter Shot

  3. #3

  4. #4
    Scarab Lord
    15+ Year Old Account
    Join Date
    Aug 2008
    Location
    Texas
    Posts
    4,040
    I've been hearing that seems there's a bug in "nodead" - it doesn't check "exists" first, even though it's supposed to. Try this
    Code:
    #showtooltip
    /cast [@focus,harm,nodead,exists][@mouseover]Scatter Shot

  5. #5
    Quote Originally Posted by hyysteria View Post
    I tried that already. It seems to still only Scatter Shot my focus
    It sounds like you want a macro other than what you described in the OP. Something that prioritizes mouseover over focus.
    /cast [@mouseover,harm][@focus,harm]scatter shot

    ---------- Post added 2011-08-11 at 03:08 AM ----------

    Quote Originally Posted by Taryble View Post
    I've been hearing that seems there's a bug in "nodead" - it doesn't check "exists" first, even though it's supposed to. Try this
    Code:
    #showtooltip
    /cast [@focus,harm,nodead,exists][@mouseover]Scatter Shot
    Having harm and exist in the same conditional section is redundant, harm covers exists, as does help.

  6. #6
    Scarab Lord
    15+ Year Old Account
    Join Date
    Aug 2008
    Location
    Texas
    Posts
    4,040
    So does "nodead", except it's bugged and not working properly. Therefore, I put in the redundancy, in case other conditionals with implied "exists" are also acting in a buggy manner. :P

  7. #7
    Everything with no- prefixed, is bugged in that it won't imply exists,
    like, nohelp / noharm / nodeadso .. harm / help already properly imply exists
    Last edited by Ketho; 2011-08-11 at 04:18 AM.

Posting Permissions

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