Ret Pally Rotation Macro menu

Shout-Out

User Tag List

Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 33
  1. #16
    Diavol's Avatar Member
    Reputation
    13
    Join Date
    Jun 2007
    Posts
    62
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just wondering if anyone has the string to add into a super macro that will use Art of War procs depending on the players health?
    For instance, Im using this:
    /run c=CastSpellByName;if (UnitHealth("target")/UnitHealthMax("target")<0.19) then c("Hammer of Wrath") elseif UnitBuff("player", "The Art of War") then c("Flash of Light") elseif (GetSpellCooldown("Crusader Strike") == 0) then c("Crusader Strike") elseif (GetSpellCooldown("Divine Storm") == 0) then c("Divine Storm") end
    And it works marvelously, but I want it to only cast flash of light if i am below 75% health, otherwise cast exorcism... that even possible with the current setup? I tried different possibilities but cant seem to find the right way to add the variable to it. maybe something like.... UnitBuff("player", "The Art of War") and (UnitHealth("player")/UnitHealthMax("player")>0.75) then c("Exorcism") else c("Flash of Light") or something. I don't know coding, im obviously just messing with someone elses code, just wondering if there is a way to alter it even more.

    Ret Pally Rotation Macro
  2. #17
    Diavol's Avatar Member
    Reputation
    13
    Join Date
    Jun 2007
    Posts
    62
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well tinkering fixed my own problem. I edited the script to not use Hammer of Wrath automatically when the target is at 20% hp, as on boss fights, I found it getting stuck, waiting on hammer of wrath cd.
    I worked out how to add the variable to Art of War as well.
    Im not very good at working with code, but this script is bomb for a ret paladin. It will use your normal priority attacks according to their cd.
    When Art of War procs, it will cast exorcism if you have above 80% hp, and will cast flash of light if you are less than 80%. The only problem with this is obviously boss fights where you are required to remain at low hp lvls (i.e anub in togc), so make adjustments as needed.
    You will need Super Duper Macro addon for this to work properly as its one giant macro.
    Enjoy

    /run c=CastSpellByName;if (GetSpellCooldown("Judgement of Light") == 0) then c("Judgement of Light") elseif (GetSpellCooldown("Crusader Strike") == 0) then c("Crusader Strike") elseif (GetSpellCooldown("Divine Storm") == 0) then c("Divine Storm") elseif UnitBuff("player", "The Art of War") and (UnitHealth("player")/UnitHealthMax("player")>0. then c("Exorcism") elseif UnitBuff("player", "The Art of War") and (UnitHealth("player")/UnitHealthMax("player")<0. then c("Flash of Light") end

  3. #18
    ganzerker's Avatar Member
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Diavol View Post
    /run c=CastSpellByName;if (GetSpellCooldown("Judgement of Light") == 0) then c("Judgement of Light") elseif (GetSpellCooldown("Crusader Strike") == 0) then c("Crusader Strike") elseif (GetSpellCooldown("Divine Storm") == 0) then c("Divine Storm") elseif UnitBuff("player", "The Art of War") and (UnitHealth("player")/UnitHealthMax("player")>0. then c("Exorcism") elseif UnitBuff("player", "The Art of War") and (UnitHealth("player")/UnitHealthMax("player")<0. then c("Flash of Light") end
    wouldn't u want art of war proc to take priority over ur other skills since its limited time? plus u shud add in hammer of wrath, something like

    /run if (UnitHealth("target")/UnitHealthMax("target")<0.2) and (GetSpellCooldown("Hammer of Wrath") == 0) then c("Hammer of Wrath") elseif UnitBuff("player", "The Art of War") and (UnitHealth("player")/UnitHealthMax("player")>0. then c("Exorcism") elseif UnitBuff("player", "The Art of War") and (UnitHealth("player")/UnitHealthMax("player")<0. then c("Flash of Light") elseif (GetSpellCooldown("Judgement of Light") == 0) then c("Judgement of Light") elseif (GetSpellCooldown("Crusader Strike") == 0) then c("Crusader Strike") elseif (GetSpellCooldown("Divine Storm") == 0) then c("Divine Storm") end
    Last edited by ganzerker; 11-25-2009 at 02:36 AM.

  4. #19
    chaoszerorush's Avatar Member
    Reputation
    1
    Join Date
    Dec 2009
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Actually, you wouldn't need to prioritize the Art of War procs against your other skills. This is because the DPS skill that benefit from AoW is on a relatively long cooldown (Exorcism). Being Ret, you wouldn't want to always cast Flash of Light every time. True that being able to heal instantly is good but it is not your priority. It will severely hamper your DPS when you use your AoW procs for FoL every time when Exorcism is on CD.

  5. #20
    Zver1992's Avatar Member
    Reputation
    1
    Join Date
    Jan 2008
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    _______________
    Last edited by Zver1992; 01-12-2010 at 01:26 PM.

  6. #21
    Jermzter's Avatar Member
    Reputation
    1
    Join Date
    Sep 2009
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Zver1992 View Post
    My fixed macroses with HoW:
    Code:
    /run local _,a,_ = GetSpellCooldown('Правосудие мудрости') if (a == 0) then CastSpellByName('Правосудие мудрости') else RunMacro'11' end
    /run local _,a,_ = GetSpellCooldown('Молот гнева') p = (UnitHealth('target')/UnitHealthMax('target')*100) if (a == 0 and p < 20) then CastSpellByName('Молот гнева') else RunMacro'12' end
    /run local _,a,_ = GetSpellCooldown('Удар воина Света') if (a == 0) then CastSpellByName('Удар воина Света') else RunMacro'13' end
    /run local _,a,_ = GetSpellCooldown('Божественная буря') if (a == 0) then CastSpellByName('Божественная буря') else RunMacro'14' end
    /run local _,a,_ = GetSpellCooldown('Освящение') if (a == 0) then CastSpellByName('Освящение') else RunMacro'15' end
    /run if UnitBuff('player', 'Искусство войны') then CastSpellByName('Экзорцизм') else RunMacro'10' end

    This would be really great if it was english /sigh

    Why post something like this when almost 99% of readers only read english.

  7. #22
    Zver1992's Avatar Member
    Reputation
    1
    Join Date
    Jan 2008
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    _______________
    Last edited by Zver1992; 01-12-2010 at 01:26 PM.

  8. #23
    Evilphtbstrd's Avatar Active Member
    Reputation
    77
    Join Date
    Feb 2008
    Posts
    193
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any chance of getting a pala tanking macro ?

  9. #24
    Sikas's Avatar Active Member
    Reputation
    69
    Join Date
    Feb 2007
    Posts
    386
    Thanks G/R
    6/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sorry, but I don't tank on my Paladin. So it'd be up to you to figure it out. >_<

  10. #25
    icerapids's Avatar Private
    Reputation
    1
    Join Date
    Nov 2009
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey guys thank you for posting these up.. they look really great.. but why cant i run these?? ..it pops up a Blizzard prompt that says a Macro has been blocked from running.. and none of the spells go off.. =/ ..am i missing something or not doing something correct? ..help pls.

  11. #26
    Sikas's Avatar Active Member
    Reputation
    69
    Join Date
    Feb 2007
    Posts
    386
    Thanks G/R
    6/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You need to have the program LuaNinja to run these macros. Check the Bots and Programs forum above this.

  12. #27
    Ssateneth's Avatar Contributor
    Reputation
    142
    Join Date
    May 2008
    Posts
    866
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I simply wrote my own macro. Uses a single /run, but requires super duper macro. Best optimized for those with 2t9. Has checks for range, cooldowns, and mana on everything. Often it'll use exorcism if closing in on a new pack of mobs and you have AoW buff which is awsome.
    Code:
    #showtooltip Crusader Strike
    /startattack
    /run cd=GetSpellCooldown p=UnitPower('player') r=IsSpellInRange c=CastSpellByName j="Judgement of Wisdom" t="target" h="Hammer of Wrath" cs="Crusader Strike" e="Exorcism" ct=UnitCreatureType(t); if cd(j)==0 and p>=197 and r(j,t)==1 then c(j) elseif cd(h)==0 and p>=474 and r(h,t)==1 and IsUsableSpell(h)==1 then c(h) elseif cd(cs)==0 and p>=197 and r(cs,t)==1 then c(cs) elseif cd('Divine Storm')==0 and p>=474 and r(cs,t)==1 then c('Divine Storm') elseif cd('Consecration')==0 and p>=1300 and r(cs,t)==1 then c('Consecration') elseif cd(e)==0 and p>=315 and r(e,t)==1 and UnitBuff("player","The Art of War") then c(e) elseif p<=5000 and cd('Divine Plea')==0 then c('Divine Plea') elseif cd('Holy Wrath')==0 and p>=1690 and r(cs,t)==1 and (ct=="Demon" or ct=="Undead") then c('Holy Wrath') end
    JoWisdom > Hammer of Wrath (If usable i.e. under 20% HP) > Crusader Strike > Divine Storm (If melee range) > Consecration (if in melee range) > Exorcism > Divine plea if under 5k mana > Holy Wrath if target in melee range and undead or demon.

    Roll dat face hard!
    Was so much easier to write this macro to 'perfection' compared to writing one for arms warriors.
    Last edited by Ssateneth; 12-21-2009 at 01:44 PM.

  13. #28
    Viral Fly-by's Avatar Contributor
    Reputation
    136
    Join Date
    Dec 2009
    Posts
    376
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Evilphtbstrd View Post
    any chance of getting a pala tanking macro ?
    Mine is in the other thread here. I'm also going to make my own thread soon so it will be there.

    Also this ret macro that does't auto-bubble or auto-wings or interrupt makes me sad. There is a macro at least as good in the other thread... I'm going to make one soon accounts for the GCD and haste (you actually don't want to do something low priority like Exorcism or Consecrate if your top priority skill is less than half a GCD away). Also you can detect gear automatically to make it always optimal regardless of what set bonuses you have...also make it detect your seal and act accordingly (more AOE if SoCommand....wings/etc if 5 stack of SoV/SoC).

  14. #29
    icerapids's Avatar Private
    Reputation
    1
    Join Date
    Nov 2009
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    heya guys i just thought i'd drop a line in there to let u you that Blizzard still finds the mod.. they permanently closed my account as of 10 mins ago using this program.. so just be cafeful.. and btw i was using it in the mildest of ways to automate my buffs and such.. wow, anyone have any ideas or comments on how i can possibly convince them to give me back my account? =/ ...any advice would be appreciated.

  15. #30
    Weapon's Avatar Member
    Reputation
    2
    Join Date
    Jan 2010
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thank you.

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. [REQ] AutoHotKey Ret Pally Rotation?
    By Sikas in forum WoW UI, Macros and Talent Specs
    Replies: 0
    Last Post: 04-11-2010, 11:03 AM
  2. [REQUEST] MM Shot Rotation macro.
    By Performer in forum World of Warcraft General
    Replies: 2
    Last Post: 01-19-2008, 03:55 AM
  3. UBER ret Pally / Enchancement Shamman / Warrior tip
    By Yooloze in forum World of Warcraft Guides
    Replies: 18
    Last Post: 10-01-2007, 12:46 PM
  4. A ret pally trick
    By Hitoshi in forum World of Warcraft Exploits
    Replies: 23
    Last Post: 09-29-2007, 04:03 PM
  5. Ret pally Guide All you need to know!
    By EliMob441 in forum World of Warcraft Guides
    Replies: 6
    Last Post: 12-26-2006, 02:17 PM
All times are GMT -5. The time now is 02:40 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search