/Dump Macro Collection (WIP at mo!) menu

User Tag List

Page 6 of 7 FirstFirst ... 234567 LastLast
Results 76 to 90 of 98
  1. #76
    Dragonshadow's Avatar ★ Elder ★
    Reputation
    1170
    Join Date
    Apr 2007
    Posts
    3,858
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by klykan857 View Post
    You're right, but Cypher made a program called "Lua ninja" that allows you to use the /run command, it does the same thing as /dump did.
    Ohhh, didn't see that.
    Look at your post, now back to mine; Now back to your post, now back to mine. Sadly, it isn't mine, but if you stopped trolling and started posting legitimate content, it could look like mine. Look down, backup, where are you? You're scrolling through threads, reading the post your post could look like. What did you post? Back at mine; It's a reply saying something you want to hear. Look again and the reply is now diamonds.

    Anything is possible when you think before you post. The moon is shrinking.

    /Dump Macro Collection (WIP at mo!)
  2. #77
    Fropper's Avatar Member
    Reputation
    8
    Join Date
    Mar 2008
    Posts
    66
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone here who can provide a macro that does the following?

    when there is Anub'arak without the debuff living bomb, cast living bomb on it, else if
    there is a mob named Nerubian Burrower without the debuff living bomb, cast living bomb on it, else cast blizzard

    would make p1 and p3 of anub 25 hc alot easier
    nothing here

  3. #78
    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)
    Sikas' Ret Pally Rotation Macro!

    Here's the code, it contains 6 macros.

    Macro 24:
    Code:
    /run local _,a,_ = GetSpellCooldown("Crusader Strike") if (a == 0) then CastSpellByName("Crusader Strike") else RunMacro"25" end
    /click StaticPopup1Button1
    Macro 25:
    Code:
    /run local _,a,_ = GetSpellCooldown("Judgement of Wisdom") if (a == 0) then CastSpellByName("Judgement of Wisdom") else RunMacro"26" end
    /click StaticPopup1Button1
    Macro 26:
    Code:
    /run local _,a,_ = GetSpellCooldown("Divine Storm") if (a == 0) then CastSpellByName("Divine Storm") else RunMacro"27" end
    /click StaticPopup1Button1
    Macro 27:
    Code:
    /run local _,a,_ = GetSpellCooldown("Consecration") if (a == 0) then CastSpellByName("Consecration") else RunMacro"28" end
    /click StaticPopup1Button1
    Macro 28:
    Code:
    /run if UnitBuff("player", "The Art of War") then CastSpellByName("Exorcism") else RunMacro"29" end
    /click StaticPopup1Button1
    Macro 29:
    Code:
     /run p=((UnitHealth("target")/UnitHealthMax("target"))*100)
    /run local _,a,_ = GetSpellCooldown("Hammer of Wrath") if (a == 0 and p < 20) then CastSpellByName("Hammer of Wrath") else RunMacro"24" end
    /click StaticPopup1Button1
    My HoW macro might not work.. but someone said it did and tested it. I currently can't get it to work.. for some reason. But anyways, feel free to use it and post it in the first post in this topic!

  4. #79
    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)
    WOW! This macro is awesome! Works great for me, thanks alot man! Now the rest of my fingers can take a rest lol

  5. #80
    Rombot's Avatar Active Member
    Reputation
    18
    Join Date
    Jul 2006
    Posts
    48
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey, I made some good macros for my lock using those dumps, you can check it out

    It's mostly DoT's and spam macro except I didn't add Haunt here because i use it mainly for PvP/Arenas. You can change this macro to work in PvE (Affli) just replace Searing pain with SB.
    It goes like this: UA-Corr-CoA-SP-SP-SP-proc(ST)=SB and over and over again.
    Note: it take raw 0.2 sec for UA to appear, so dont be surprised to see double UA cast.

    Code:
    #showtooltip Unstable Affliction
    /run loadstring("local _,_,_,_,_,_,_,caster,_ = UnitDebuff(\"target\", \"Unstable Affliction\")if(caster~=\"player\")then CastSpellByName(\"Unstable Affliction\")end") ()
    /run  loadstring("local _,_,_,_,_,_,_,caster,_ = UnitDebuff(\"target\", \"Corruption\")if(caster~=\"player\")then CastSpellByName(\"Corruption\") end") ()
    /run  loadstring("local _,_,_,_,_,_,_,caster,_ = UnitDebuff(\"target\", \"Curse of Agony\")if(caster~=\"player\")then CastSpellByName(\"Curse of Agony\") end") ()
    /run loadstring("if UnitBuff(\"Player\", \"Shadow trance\") then CastSpellByName(\"Shadow bolt\") else CastSpellByName(\"Searing Pain\") end") ()
    Tho i don't know how to make it cancle spellcast when ANY dot faided, can any1 help here?


    And this one i use for fear, it's god damn cool. It wont cast fear unless it faides from target and can be spammed:

    Code:
    #showtooltip Fear
    /run loadstring("local _,_,_,_,_,_,_,caster,_ = UnitDebuff(\"target\", \"Fear\")if(caster~=\"player\")then CastSpellByName(\"Fear\") end") ()
    I didn't split it into diff. macros because i use this addon Works like a charm

  6. #81
    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)
    Another great macro post!

    I'll use this on my warlock, been feeling bad I only use him for fish boting, makes me feel like his turned to a chinese farmer lol - Thanks Rombot!

  7. #82
    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)
    If you think our macros are good, please do us a courtesy and +Rep us.

  8. #83
    synkt's Avatar Member
    Reputation
    1
    Join Date
    May 2009
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    figured I should contribute at least something to the site.

    Elemental shaman dps rotation

    dps1
    Code:
    /run if not UnitDebuff("target", "Flame Shock") then CastSpellByName("Flame Shock") else RunMacro"dps2" end
    dps2
    Code:
    /run local _, d, _ = GetSpellCooldown("Lava Burst") if (d == 0) then CastSpellByName("Lava Burst") else RunMacro"dps3"end
    dps3
    Code:
    /run local _, d, _ = GetSpellCooldown("Chain Lightning") if (d == 0) then CastSpellByName("Chain Lightning") else CastSpellByName("Lightning Bolt") end
    I know it isn't pretty, but it works so far.

  9. #84
    Gooday's Avatar Member
    Reputation
    10
    Join Date
    Jan 2007
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'd be much appreciative if someone could help me fix the unitCaster=player
    API UnitDebuff - WoWWiki - Your guide to the World of Warcraft

    Code:
    /cancelaura Ice Block
    /cancelaura Invisibility
    /run c=CastSpellByName;if not UnitDebuff("target", "Living Bomb", unitCaster=player) then c("Living Bomb");  elseif UnitBuff("player", "Hot Streak") then RunMacro("Pyro") else c("Fireball") end

  10. #85
    deadca7's Avatar Elite User
    Reputation
    461
    Join Date
    Nov 2007
    Posts
    150
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Updated Gifteds UH DK macro, to work with LuaNinja
    We don't need all the crap anymore

    Code:
    Macro Name: Spam
    /run local p = IsSpellInRange("Plague Strike", "target") if (p == 0) then CastSpellByName("Icy Touch") else RunMacro("BP") end
    /click StaticPopup1Button1
    
    Macro Name: BP
    /run if (not UnitDebuff("target", "Blood Plague")) then RunMacro("DUR1") else RunMacro("FF") end
    /click StaticPopup1Button1
    
    Macro Name: FF
    /run if (not UnitDebuff("target", "Frost Fever")) then RunMacro("DFR1") else RunMacro("UR1") end
    /click StaticPopup1Button1
    
    Macro Name: BPleft
    /run if (not UnitDebuff("target", "Blood Plague")) then CastSpellByName("Blood Strike") else RunMacro("FFleft") end
    /click StaticPopup1Button1
    
    Macro Name: FFleft
    /run if (not UnitDebuff("target", "Frost Fever")) then RunMacro("UR1") else CastSpellByName("Blood Strike") end
    /click StaticPopup1Button1
    
    Macro Name: BPright
    /run if (not UnitDebuff("target", "Blood Plague")) then RunMacro("FR1") else RunMacro("FFright") end
    /click StaticPopup1Button1
    
    Macro Name: FFright
    /run if (not UnitDebuff("target", "Frost Fever")) then CastSpellByName("Blood Strike") else RunMacro("DFR1") end
    /click StaticPopup1Button1
    
    Macro Name: DFR1
    /run local _,_,c = GetRuneCooldown("1") if (GetRuneType("1") == 4) and (c == true) then CastSpellByName("Icy Touch") else RunMacro("DFR2") end
    /click StaticPopup1Button1
    
    Macro Name: DFR2
    /run local _,_,d = GetRuneCooldown("2") if (GetRuneType("2") == 4) and (d == true) then CastSpellByName("Icy Touch") else RunMacro("FR1") end
    /click StaticPopup1Button1
    
    Macro Name: FR1
    /run local _,_,a = GetRuneCooldown("5") if (a == true) then CastSpellByName("Icy Touch") else RunMacro("FR2") end
    /click StaticPopup1Button1
    
    Macro Name: FR2
    /run local _,_,b = GetRuneCooldown("6") if (b == true) then CastSpellByName("Icy Touch") else RunMacro("BPleft") end
    /click StaticPopup1Button1
    
    Macro Name: DUR1
    /run local _,_,i = GetRuneCooldown("1") if (GetRuneType("1") == 4) and (i == true) then CastSpellByName("Plague Strike") else RunMacro("DUR2") end
    /click StaticPopup1Button1
    
    Macro Name: DUR2
    /run local _,_,j = GetRuneCooldown("2") if (GetRuneType("2") == 4) and (j == true) then CastSpellByName("Plague Strike") else RunMacro("UR1") end
    /click StaticPopup1Button1
    
    Macro Name: UR1
    /run local _,_,g = GetRuneCooldown("3") if (g == true) then CastSpellByName("Plague Strike") else RunMacro("UR2") end
    /click StaticPopup1Button1
    
    Macro Name: UR2
    /run local _,_,h = GetRuneCooldown("4") if (h == true) then CastSpellByName("Plague Strike") else RunMacro("BPright") end
    /click StaticPopup1Button1
    Last edited by deadca7; 11-03-2009 at 03:15 AM.


  11. #86
    synkt's Avatar Member
    Reputation
    1
    Join Date
    May 2009
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Here is a more complex version of my Elemental Shaman dps rotation. (I am learning more as I go along)

    Checks for casting and interrupts with windshear, keeps up Water Shield, casts Thunderstorm if you have less than 15k mana and does a full dps rotation with one button.

    To skip cast check omit the first macro

    tcc - Target Cast Check: checks if target is casting and interrupts with Wind Shear. This will interrupt your cast to cast Wind Shear
    Code:
    /run if UnitCastingInfo("target") then SpellStopCasting() CastSpellByName("Wind Shear") else RunMacro"wsc" end
    wsc - Checks for Water Shield and casts if necessary
    Code:
    /run if not UnitBuff("player", "Water Shield") then CastSpellByName("Water Shield") else RunMacro"tsc" end
    tsc - Checks CD on Thunderstorm. If off CD and <15k mana casts
    Code:
    /run loadstring("local _, d, _ = GetSpellCooldown("Thunderstorm") if ((UnitPower("player") < 15000) and (d == 0)) then CastSpellByName("Thunderstorm") else RunMacro("dps1") end") ()
    dps1 - [Checks for Flame Shock and applies if necessary
    Code:
    /run if not UnitDebuff("target", "Flame Shock") then CastSpellByName("Flame Shock") else RunMacro"dps2"
    dps2 - Checks Lava Burst CD, Casts if available
    Code:
    /run local _, d, _ = GetSpellCooldown("Lava Burst") if (d == 0) then CastSpellByName("Lava Burst") else RunMacro"dps3"end
    dps3 - Checks Chain Lightning CD and Casts if available, otherwise casts Lightning Bolt
    Code:
    /run local _, d, _ = GetSpellCooldown("Chain Lightning") if (d == 0) then CastSpellByName("Chain Lightning") else CastSpellByName("Lightning Bolt") end

  12. #87
    ^bE qUiEt's Avatar Active Member
    Reputation
    35
    Join Date
    Aug 2007
    Posts
    135
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Gooday View Post
    I'd be much appreciative if someone could help me fix the unitCaster=player
    API UnitDebuff - WoWWiki - Your guide to the World of Warcraft

    Code:
    /cancelaura Ice Block
    /cancelaura Invisibility
    /run c=CastSpellByName;if not UnitDebuff("target", "Living Bomb", unitCaster=player) then c("Living Bomb");  elseif UnitBuff("player", "Hot Streak") then RunMacro("Pyro") else c("Fireball") end
    try

    UnitDebuff("target", "Living Bomb",unitCaster="player")

    had no other player to test this with me, so it would be great if you could tell me whether it works or not ^^
    Last edited by ^bE qUiEt; 11-03-2009 at 01:23 PM.

  13. #88
    garb's Avatar Knight
    Reputation
    27
    Join Date
    Nov 2009
    Posts
    223
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sikas View Post
    Here's my working Ret Pally Rotation Macros that will work with LuaNinja.

    Macro 24:
    Code:
    /run local _,a,_ = GetSpellCooldown("Crusader Strike") if (a == 0) then CastSpellByName("Crusader Strike") else RunMacro"25" end
    Macro 25:
    Code:
    /run local _,a,_ = GetSpellCooldown("Judgement of Wisdom") if (a == 0) then CastSpellByName("Judgement of Wisdom") else RunMacro"26" end
    Macro 26:
    Code:
    /run local _,a,_ = GetSpellCooldown("Divine Storm") if (a == 0) then CastSpellByName("Divine Storm") else RunMacro"27" end
    Macro 27:
    Code:
    /run local _,a,_ = GetSpellCooldown("Consecration") if (a == 0) then CastSpellByName("Consecration") else RunMacro"28" end
    Macro 28:
    Code:
    /run if UnitBuff("player", "The Art of War") then CastSpellByName("Exorcism") else RunMacro"24" end
    Not sure how to get Hammer of Wrath working.. what I have is...
    Code:
    /run local p=((UnitHealth("target")/UnitHealthMax("target"))*100) if (p < 20) then CastSpellByName("Hammer of Wrath") else RunMacro"24" end
    Help?
    What do we do with this, line them up and smash our 1-6 keybinds?
    It's not automatically switching for me, unless it's not supposed to?

  14. #89
    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)
    All you do is hit the first macro. You have to remember the 'RunMacro"24" for instance is based on the slot where the macro is. 1-6 is the top of the macro screen, 7-12 is the next.. etc etc. If need be.. jus rename the 'RunMacro"24" to 'RunMacro"CS" and name the actual CS macro.. CS. :P

  15. #90
    ^bE qUiEt's Avatar Active Member
    Reputation
    35
    Join Date
    Aug 2007
    Posts
    135
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    /run c=CastSpellByName;if (UnitHealth("target")/UnitHealthMax("target")<0.2) then c("Execute") elseif not UnitDebuff("target", "Rend",unitCaster~="player") then c("Rend") elseif UnitBuff("player", "Taste for Blood") then c("Overpower") elseif UnitBuff("player","Sudden Death") then c("Execute")  elseif (GetSpellCooldown("Mortal Strike") == 0)  then c("Mortal Strike") else c("Slam") end
    this is a one button rotation for an arms warrior, it's only usable with the addon Super Duper Macro because it exeeds the 255er limit

    it does pretty much everything for you, the only thing i could not test was if it works if there is an other warrior with you who applies rend to the target

    in theory it should work in that case aswell


    what it does:

    cast execute if the target is under 20%
    cast rend if its not up (and as mentioned before it should also cast it if you're not the one who casted it)
    cast overpower if you have the "taste for blood" buff
    cast execute if you have the "sudden death" buff
    cast mortal strike if the cd is over
    and if nothing else is available it casts slam
    Last edited by ^bE qUiEt; 11-04-2009 at 12:39 PM.

Page 6 of 7 FirstFirst ... 234567 LastLast

Similar Threads

  1. [Macro-Collection] All-In-One-Button Macro for all Classes from Level 15-90!
    By Classicclean in forum WoW UI, Macros and Talent Specs
    Replies: 21
    Last Post: 01-21-2014, 08:16 AM
  2. LuaNinja Macro Collection
    By Elitetech in forum WoW UI, Macros and Talent Specs
    Replies: 628
    Last Post: 02-19-2013, 06:24 AM
  3. <ReQuest> protret smash pvp /dump macro
    By marlboroman1982 in forum WoW UI, Macros and Talent Specs
    Replies: 2
    Last Post: 11-10-2009, 11:03 AM
  4. Need help about /dump macro
    By Zanac in forum World of Warcraft General
    Replies: 1
    Last Post: 09-22-2009, 05:20 AM
  5. [DK] EPIC /dump macro for UH PvP
    By gifted in forum World of Warcraft Exploits
    Replies: 30
    Last Post: 08-19-2009, 05:30 PM
All times are GMT -5. The time now is 12:49 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search