Close
Page 1 of 2 1 2 LastLast
Showing results 1 to 10 of 14

Hybrid View

  1. #1

    Default Stopcasting Round-robin with macro. Advice needed

    situation:
    4 mages usind DPS castsequence macro are blasting approaching mob
    At the moment mob comes within Nova radius i want one of mages to snare it with Nova while the others continue blasting

    In the same situation with one mage the macro will be quite simple
    /stopcasting
    /cast Frost nova

    When i tried to write a macro for a group with RR Nova i came to a situation when whether i have to stopcasting all mages for only one to use Nova or i have to wait for mages to finish casting/channeling to Nowa.

    1st situation (all stopcasting one drop Nova in RR)
    /stopcasting
    /castsequence Frost nova,,,

    /stopcasting
    /castsequence ,Frost nova,,

    /stopcasting
    /castsequence ,,Frost nova,

    2nd situation (wait for the current spell to cast/channel completely then Nova in RR)

    /castsequence Frost nova,,,

    /castsequence ,Frost nova,,

    /castsequence ,,Frost nova,

    Both way i do not like.

    I know, that keyclone feature RR can solve this, but I want to know if it can be done with the default macro language of WOW?
    the reason is simple. I have more than one MB team and i dont want to setup keyclone RR keys each time i swich between teams
    Lok'tar ogar! Victory or death - it is these words that bind me to the Horde. For they are the most sacred and fundamental of truths to any warrior of the Horde. I give my flesh and blood freely to the Warchief. I am the instrument of my Warchief's desire. I am a weapon of my Warchief's command. From this moment until the end of days I live and die - For the Horde!

  2. #2

    Default

    You could use the drop-through behaviour of castsequences with blanks e.g. :
    Mage1:
    /castsequence [target=party1target] ,fireball,fireball,fireball
    /stopcasting
    /cast frost nova
    Mage2:
    /castsequence [target=party1target] fireball,,fireball,fireball
    /stopcasting
    /cast frost nova
    Mage3:
    /castsequence [target=party1target] fireball,fireball,,fireball
    /stopcasting
    /cast frost nova
    Mage4:
    /castsequence [target=party1target] fireball,fireball,fireball,,
    /stopcasting
    /cast frost nova

    I think this will work like:
    First time you press it: mage 1 will drop through the blank entry in the castsequence and do stopcasting and frostnova, other 3 mages will cast fireball.
    Second time: mage 2 will drop through the blank entry in the castsequence, stop casting and cast a frostnova, other 3 will cast fireball.
    etc...

    Depends on how stopcasting works in castsequences though, which i'm not sure about.

  3. #3

    Default

    Quote Originally Posted by 'slash',index.php?page=Thread&postID=191200#post19 1200
    Depends on how stopcasting works in castsequences though, which i'm not sure about.
    The you have it written, the /stopcasting will run every time you press the button.

  4. #4

    Default

    2 slash

    Will not work...
    1st - all strings in the macro executes simultaneously so the only thing your macro will do is :
    1) try cast fireball
    2) then stopcasting
    3) try cast nova, but our initial attempt to cast FB triggrs GCD so we get "not ready" error

    So we only get "not ready" error from this...

    2 Bigfish

    Any suggestions?
    Lok'tar ogar! Victory or death - it is these words that bind me to the Horde. For they are the most sacred and fundamental of truths to any warrior of the Horde. I give my flesh and blood freely to the Warchief. I am the instrument of my Warchief's desire. I am a weapon of my Warchief's command. From this moment until the end of days I live and die - For the Horde!

  5. #5

    Default

    Off the top of my head, I would argue to have 2 buttons set up; one for when the mob is approaching, one for when the mob is in nova range. For simplicities sake, I'll call them macro #1 and macro #2. Have #1 set up to spam your nuke of choice, and then have #2 set up to run a castsequence that spams the nuke, but also integrates a staggered frost nova.

    That said, I'm not entirely sure what context you are trying to use this in. If it's just one mob, I would think you would be better off just doing a stopcasting+Fire Blast to finish the thing off.

  6. #6

  7. #7

    Default

    Quote Originally Posted by 'Chorizotarian',index.php?page=Thread&postID=19122 8#post191228
    Only problem with it is that yeh cant spam it.

    Ivanhalf: there is no good way of implementing this by just using ingame macros the easiest way would be to use Keyclone RR then set it up on some key that yeh don't normally use that way it wont interfere with yer other groups.

  8. #8

    Default

    I don't understand what you mean. You absolutely can spam a macro made with MacroSequence, just as much as any other macro. Round-robins with /stopcasting are easy. Check out my shamman shock sequences here if you want an example.
    All my codes r belong to you: wow5box

  9. #9

    Default

    2 wowphreak

    yeah... It seems to me like keyclone RR or some other software broadcaster the only convinient way to do it if we use only official macro language.

    2 Chorizotarian

    I've checked your listings and i have some questions.

    So as far as i can see the MacroSequence can place entire macro in plase of a 'spell' in a castsequense?

    so if i want to RR Nova all i need to do is

    1st - write to Sequences.Lua the following:

    FROST_NOVA_RR = { [[
    /stopcasting
    /cast Frost Nova
    ]] },

    2nd - then on my mages write a macroses

    /castsequence reset=24 FROST_NOVA_RR,,,

    /castsequence reset=24 ,FROST_NOVA_RR,,

    /castsequence reset=24 ,,FROST_NOVA_RR,

    /castsequence reset=24 ,,,FROST_NOVA_RR

    So the questions are
    1) will it work or i have wrong understanding of syntax?
    2) Is it legal in terms of LUA and TOS?

    the 2nd question worries me most.
    Macro Language is given us by Blizzard and if it is unable to do, say, check whether spell successfully lands on a target or something like that, it is open question for me if the said functionality, provided by some addon or program, is legal.

    As for the addon(MacroSequence) i think it is great. really. All my troubles with RR stopcasting was caused by the fact i could not place some short macro in castsequence.
    show me some proof that this addon usage does not violate LUA or TOS and i'd love to use it and advice it to any multiboxer.
    Lok'tar ogar! Victory or death - it is these words that bind me to the Horde. For they are the most sacred and fundamental of truths to any warrior of the Horde. I give my flesh and blood freely to the Warchief. I am the instrument of my Warchief's desire. I am a weapon of my Warchief's command. From this moment until the end of days I live and die - For the Horde!

  10. #10

    Default

    Quote Originally Posted by Chorizotarian',index.php?page=Thread&postID=191408 #post191408]I don't understand what you mean. You absolutely can spam a macro made with MacroSequence, just as much as any other macro. Round-robins with /stopcasting are easy. Check out my shamman shock sequences [url='http://code.google.com/p/wow5box/source/browse/trunk/macros/Sequences.lua
    here[/url] if you want an example.
    Hmm guess I miss read what they said on there forum about spamming and holding I guess there wanting it to stop in the sequence when the spell fails.

    been debating on doing this for my warlock as far as I can tell this mod gives yeh 2 things the ability to "sequence" just about anything and the ability to loop to any point into the sequence

    Yes its legal considering its something yeh could do anyways without the mod the mod just makes it easier.

    hardPause := Mod(++hardPause, 2) ; Can a brother get a NOT?
    can be changed to
    hardPause :=!hardPause
    :P

Similar Threads

  1. auto shot acting like round robin except I don't use round robin...
    By uberfail in forum New Multi-Boxers & Support
    Replies: 8
    Last Post: 12-29-2008, 09:27 PM
  2. Advice: Round robin on your insta nuke
    By magwo in forum PvP Discussion
    Replies: 8
    Last Post: 09-08-2008, 06:29 AM
  3. round robin
    By Shox in forum Software Tools
    Replies: 4
    Last Post: 05-12-2008, 09:01 AM
  4. Round-Robin
    By balrog78 in forum Software Tools
    Replies: 2
    Last Post: 02-25-2008, 09:42 PM
  5. Macro Question - Round Robin?
    By Morganti in forum General WoW Discussion
    Replies: 10
    Last Post: 07-17-2007, 10:59 AM

Posting Rules

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