Close
Page 1 of 2 1 2 LastLast
Showing results 1 to 10 of 18
  1. #1

    Default Power Word; Shield Macro?

    Hi all,
    I am wondering if this is possible, i am thinking that it would be good use of a spam button to put Power Word: Shield on it, i.e. a macro that would target each member of my team and then cast shield on them? I have tried this in just a simple target and then cast macro, did not work, then tried a castsequence, still not luck, all it seems to be doing is casting on the first toon in the macro but not doing the rest of the team.
    Anyone get this to work with a Disc priest?
    Thanks

  2. #2

    Default

    AFAIK, macros can't cast a spell, change targets, and cast another spell.

    There are 2 ways to do this.

    First way: Using click macros to click individual macros that do a simple /tar party1 /cast power word: shield /targetlasttarget.

    Second way: Create a keymap in ISBoxer that has 5 steps (one for each group member) that has the macro above.

    Here is the mapped key (copy & paste into an ISBoxer KeyMap)

    You can spam this key as fast as you want, and even though you'll blow right paste the GCD everyone will get bubbled. it will just require you spam the button for 5 GCDs to get everyone.

    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <Box xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <ObjectType>ISBoxer_Toolkit.Configs.KeyMaps.MappedKey</ObjectType>
      <SerializedObject>&lt;?xml version="1.0" encoding="utf-8"?&gt;
    &lt;MappedKey xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
      &lt;Name&gt;BubbleSpam&lt;/Name&gt;
      &lt;Combo&gt;
        &lt;Combo&gt;Shift+F1&lt;/Combo&gt;
        &lt;Modifiers&gt;Shift&lt;/Modifiers&gt;
        &lt;Key&gt;
          &lt;Key&gt;F1&lt;/Key&gt;
          &lt;Code&gt;59&lt;/Code&gt;
        &lt;/Key&gt;
      &lt;/Combo&gt;
      &lt;SendNextClickBlockLocal&gt;false&lt;/SendNextClickBlockLocal&gt;
      &lt;ManualLoad&gt;false&lt;/ManualLoad&gt;
      &lt;ResetTimer&gt;0.1&lt;/ResetTimer&gt;
      &lt;ResetType&gt;Never&lt;/ResetType&gt;
      &lt;Mode&gt;OnRelease&lt;/Mode&gt;
      &lt;Steps&gt;
        &lt;Step&gt;
          &lt;Stick&gt;0&lt;/Stick&gt;
          &lt;Actions&gt;
            &lt;MappedKeyAction xsi:type="WoWMacroAction"&gt;
              &lt;ShortName /&gt;
              &lt;Target&gt;Satinworship-Kil'Jaeden&lt;/Target&gt;
              &lt;Combo&gt;
                &lt;Combo&gt;Shift+F1&lt;/Combo&gt;
                &lt;Modifiers&gt;Shift&lt;/Modifiers&gt;
                &lt;Key&gt;
                  &lt;Key&gt;F1&lt;/Key&gt;
                  &lt;Code&gt;59&lt;/Code&gt;
                &lt;/Key&gt;
              &lt;/Combo&gt;
              &lt;WoWMacro&gt;
                &lt;PreCommand&gt;None&lt;/PreCommand&gt;
                &lt;MacroCommands&gt;/run SetCVar("Sound_EnableSFX","0")
    /tar satinworship
    /cast Power Word: Shield
    /targetlasttarget
    /run SetCVar("Sound_EnableSFX","1")&lt;/MacroCommands&gt;
                &lt;TargetLastTarget&gt;false&lt;/TargetLastTarget&gt;
              &lt;/WoWMacro&gt;
            &lt;/MappedKeyAction&gt;
          &lt;/Actions&gt;
        &lt;/Step&gt;
        &lt;Step&gt;
          &lt;Stick&gt;0&lt;/Stick&gt;
          &lt;Actions&gt;
            &lt;MappedKeyAction xsi:type="WoWMacroAction"&gt;
              &lt;ShortName /&gt;
              &lt;Target&gt;Satinworship-Kil'Jaeden&lt;/Target&gt;
              &lt;Combo&gt;
                &lt;Combo&gt;Shift+F2&lt;/Combo&gt;
                &lt;Modifiers&gt;Shift&lt;/Modifiers&gt;
                &lt;Key&gt;
                  &lt;Key&gt;F2&lt;/Key&gt;
                  &lt;Code&gt;60&lt;/Code&gt;
                &lt;/Key&gt;
              &lt;/Combo&gt;
              &lt;WoWMacro&gt;
                &lt;PreCommand&gt;None&lt;/PreCommand&gt;
                &lt;MacroCommands&gt;/run SetCVar("Sound_EnableSFX","0")
    /tar party1
    /cast Power Word: Shield
    /targetlasttarget
    /run SetCVar("Sound_EnableSFX","1")&lt;/MacroCommands&gt;
                &lt;TargetLastTarget&gt;false&lt;/TargetLastTarget&gt;
              &lt;/WoWMacro&gt;
            &lt;/MappedKeyAction&gt;
          &lt;/Actions&gt;
        &lt;/Step&gt;
        &lt;Step&gt;
          &lt;Stick&gt;0&lt;/Stick&gt;
          &lt;Actions&gt;
            &lt;MappedKeyAction xsi:type="WoWMacroAction"&gt;
              &lt;ShortName /&gt;
              &lt;Target&gt;Satinworship-Kil'Jaeden&lt;/Target&gt;
              &lt;Combo&gt;
                &lt;Combo&gt;Shift+F3&lt;/Combo&gt;
                &lt;Modifiers&gt;Shift&lt;/Modifiers&gt;
                &lt;Key&gt;
                  &lt;Key&gt;F3&lt;/Key&gt;
                  &lt;Code&gt;61&lt;/Code&gt;
                &lt;/Key&gt;
              &lt;/Combo&gt;
              &lt;WoWMacro&gt;
                &lt;PreCommand&gt;None&lt;/PreCommand&gt;
                &lt;MacroCommands&gt;/run SetCVar("Sound_EnableSFX","0")
    /tar party2
    /cast Power Word: Shield
    /targetlasttarget
    /run SetCVar("Sound_EnableSFX","1")&lt;/MacroCommands&gt;
                &lt;TargetLastTarget&gt;false&lt;/TargetLastTarget&gt;
              &lt;/WoWMacro&gt;
            &lt;/MappedKeyAction&gt;
          &lt;/Actions&gt;
        &lt;/Step&gt;
        &lt;Step&gt;
          &lt;Stick&gt;0&lt;/Stick&gt;
          &lt;Actions&gt;
            &lt;MappedKeyAction xsi:type="WoWMacroAction"&gt;
              &lt;ShortName /&gt;
              &lt;Target&gt;Satinworship-Kil'Jaeden&lt;/Target&gt;
              &lt;Combo&gt;
                &lt;Combo&gt;Shift+F4&lt;/Combo&gt;
                &lt;Modifiers&gt;Shift&lt;/Modifiers&gt;
                &lt;Key&gt;
                  &lt;Key&gt;F4&lt;/Key&gt;
                  &lt;Code&gt;62&lt;/Code&gt;
                &lt;/Key&gt;
              &lt;/Combo&gt;
              &lt;WoWMacro&gt;
                &lt;PreCommand&gt;None&lt;/PreCommand&gt;
                &lt;MacroCommands&gt;/run SetCVar("Sound_EnableSFX","0")
    /tar party3
    /cast Power Word: Shield
    /targetlasttarget
    /run SetCVar("Sound_EnableSFX","1")&lt;/MacroCommands&gt;
                &lt;TargetLastTarget&gt;false&lt;/TargetLastTarget&gt;
              &lt;/WoWMacro&gt;
            &lt;/MappedKeyAction&gt;
          &lt;/Actions&gt;
        &lt;/Step&gt;
        &lt;Step&gt;
          &lt;Stick&gt;0&lt;/Stick&gt;
          &lt;Actions&gt;
            &lt;MappedKeyAction xsi:type="WoWMacroAction"&gt;
              &lt;ShortName /&gt;
              &lt;Target&gt;Satinworship-Kil'Jaeden&lt;/Target&gt;
              &lt;Combo&gt;
                &lt;Combo&gt;Shift+F5&lt;/Combo&gt;
                &lt;Modifiers&gt;Shift&lt;/Modifiers&gt;
                &lt;Key&gt;
                  &lt;Key&gt;F5&lt;/Key&gt;
                  &lt;Code&gt;63&lt;/Code&gt;
                &lt;/Key&gt;
              &lt;/Combo&gt;
              &lt;WoWMacro&gt;
                &lt;PreCommand&gt;None&lt;/PreCommand&gt;
                &lt;MacroCommands&gt;/run SetCVar("Sound_EnableSFX","0")
    /tar party4
    /cast Power Word: Shield
    /targetlasttarget
    /run SetCVar("Sound_EnableSFX","1")&lt;/MacroCommands&gt;
                &lt;TargetLastTarget&gt;false&lt;/TargetLastTarget&gt;
              &lt;/WoWMacro&gt;
            &lt;/MappedKeyAction&gt;
          &lt;/Actions&gt;
        &lt;/Step&gt;
      &lt;/Steps&gt;
    &lt;/MappedKey&gt;</SerializedObject>
    </Box>

  3. #3

    Default

    LOL, thanks so much for this Svpernova09, funny thing is we talked about this on ISBoxer's IRC chat at the weekend when I was having issues with the click buttons . I did get the buttons to work but it just "feels" like there is lag and not as efficient when I use click buttons to apply the shield and it seems about half the time that the click button does not get shield up on the target, kinda weird.
    But I think the code listed should work
    Cool

  4. #4

    Default

    Would do this the trick ?

    Code:
    /castsequence reset=15 [@party1] Power Word: Shield,NULL
    /castsequence reset=15 [@party2] Power Word: Shield,NULL
    /castsequence reset=15 [@party3] Power Word: Shield,NULL
    /castsequence reset=15 [@party4] Power Word: Shield,NULL
    /castsequence reset=15 [@player] Power Word: Shield,NULL
    @ work so I can't test it.

    and then spam the key until everyone has a shield. then stop and after 15 sec you can start spamming again.

    If this works I will do the same for Hots
    Last edited by Bloodcloud : 04-07-2010 at 11:39 AM
    I don't suffer from Schizophrenia, I enjoy every moment of it !

  5. #5

  6. #6

    Default

    Quote Originally Posted by Bloodcloud View Post
    Would do this the trick ?

    Code:
    /castsequence reset=15 [@party1] Power Word: Shield,NULL
    /castsequence reset=15 [@party2] Power Word: Shield,NULL
    /castsequence reset=15 [@party3] Power Word: Shield,NULL
    /castsequence reset=15 [@party4] Power Word: Shield,NULL
    /castsequence reset=15 [@player] Power Word: Shield,NULL
    @ work so I can't test it.

    and then spam the key until everyone has a shield. then stop and after 15 sec you can start spamming again.

    If this works I will do the same for Hots

    Too long, it gets cut off :

    Code:
    /castsequence reset=15 [@party1] Power Word: Shield,NULL
    /castsequence reset=15 [@party2] Power Word: Shield,NULL
    /castsequence reset=15 [@party3] Power Word: Shield,NULL
    /castsequence reset=15 [@party4] Power Word: Shield,NULL
    /castsequence reset=15 [@pl
    Edit:

    I changed it to
    Code:
    /castsequence reset=15 [@party1] Power Word: Shield,NULL
    /castsequence reset=15 [@player] Power Word: Shield,NULL
    And bubbled party1, but not my toon, so looks like it won't change targets and recast.
    Last edited by Svpernova09 : 04-07-2010 at 11:49 AM Reason: tested

  7. #7

    Default

    Pretty sure we figured this out in another thread about putting hots on people.

    Note to svpernova though, if you have problems with macros getting too long you should get macaroon or superdupermacro to let you have longer macros.

    Also, the reset condition needs to be after the target conditions. (i'm pretty sure of it anyway)
    I'm going to live forever, or die trying.
    5 Shaman Northrend Heroics - My YouTube Channel - Details about my setup (outdated)
    T2 Heroics: lvl 80 Heroics wearing lvl 60 armour
    Running 5-6 accounts on one computer, currently playing Horde on US-Skywall.
    My main teams:
    5x Shamans lvl 85
    5-class team lvl 100: Paladin, Druid, Shaman, Mage, Priest

  8. #8
    Member
    Join Date
    Sep 2008
    Location
    Calgary, AB and Vancouver, BC
    Posts
    7638
    Blog Entries
    2

    Default

    You can use:
    /targetparty
    /cast Power Word: Shield

    Which will cycle through your party one after the other (starting with the nearest); however, /targetparty will never target your own toon.

    You could change it to:
    /targetparty
    /cast [nomod:alt] Power Word: Shield
    /cast [mod:alt,Target=Player] Power Word: Shield

    Possibly consider an addon like Smart Buff, where you can assign it to buff anyone who is missing a buff, by spamming the key. Not sure that you can use that in combat or not, especially to change targets.




    *Edit*
    The Rejuvenation on the whole team, via a click macro... was something like:

    /castsequence [target=Party1] ,,,,Power Word: Shield
    /castsequence [target=Party2] ,,,Power Word: Shield
    /castsequence [target=Party3] ,,Power Word: Shield
    /castsequence [target=Party4] ,Power Word: Shield
    /castsequence [target=Player] Power Word: Shield
    Last edited by Ualaa : 04-07-2010 at 07:12 PM
    EverQuest I: Bard / Enchanter / Druid / Wizard / 2x Magician.
    Diablo III: 4x Crusader & 4x Wizard.

    My Guide to IS Boxer http://www.dual-boxing.com/showthread.php?t=26231 (somewhat dated).
    Streaming in 1080p HD: www.twitch.tv/ualaa
    Twitter: @Ualaa


  9. #9

    Default

    Quote Originally Posted by Ualaa View Post
    You can use:
    /targetparty
    /cast Power Word: Shield
    drawback, you can;t spam the button. If GCD is in effect you will skip toons.

    The Rejuvenation on the whole team, via a click macro... was something like:

    /castsequence [target=Party1] ,,,,Power Word: Shield
    /castsequence [target=Party2] ,,,Power Word: Shield
    /castsequence [target=Party3] ,,Power Word: Shield
    /castsequence [target=Party4] ,Power Word: Shield
    /castsequence [target=Player] Power Word: Shield
    Problems with this is that it NEEDS the /click functionality. It can't be collapsed, because you can't target different targets in a single macro. so it needs to be different macros.

    see previous post of Svpernova9
    I don't suffer from Schizophrenia, I enjoy every moment of it !

  10. #10
    Member
    Join Date
    Sep 2008
    Location
    Calgary, AB and Vancouver, BC
    Posts
    7638
    Blog Entries
    2
    Last edited by Ualaa : 04-08-2010 at 08:01 AM
    EverQuest I: Bard / Enchanter / Druid / Wizard / 2x Magician.
    Diablo III: 4x Crusader & 4x Wizard.

    My Guide to IS Boxer http://www.dual-boxing.com/showthread.php?t=26231 (somewhat dated).
    Streaming in 1080p HD: www.twitch.tv/ualaa
    Twitter: @Ualaa


Posting Rules

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