[EPIC]Automate any Rotation 100% /w Lua. menu

User Tag List

Page 6 of 7 FirstFirst ... 234567 LastLast
Results 76 to 90 of 102
  1. #76
    Elitetech's Avatar Contributor
    Reputation
    98
    Join Date
    Oct 2008
    Posts
    279
    Thanks G/R
    3/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Zooza View Post
    My affliction macro is running like a charm now, sometimes it doublecasts ''Unstable Affliction'', but in most cases it out-dps all other affliction warlocks with same gear

    Heres the Code, may someone is able to fix the double-casting?

    Code:
    /
    Warning! German Spellnames!

    ================================

    But now theres a new Question.

    Can someone say whats wrong with this Macro? Its just casting immolate and then spamming Incinerate???
    Warning!! German Spellnames again!

    wfg
    Zooza
    Assuming you're not going to cast Unstable Affliction twice for, lets say, 5 seconds, then using a castsequence that can't cast a spell will cancel it. Or using a castsequence that casts the next spell (to get rid of the 0.01 second not casting anything(lol)).

    RunMacroText("/castsequence reset=5 Unstable Affliction, Moomoomoo") tries to cast moomoomoo after unstable affliction is cast which is a spell you haven't gotten. So won't work :P
    You can also change 5 to any other amount of seconds you want it, or switch moomoomoo with corruption or something. Alot of ways to avoid doublecasting


    Edit: As for your second question. You're not ending your scripts properly, you're using more conditions than 1 in most of the lines so you'd need more ends as well.
    Try this
    Code:
    /run if (UnitMana("Player")/UnitManaMax("Player"))*100 < 60 then CastSpellByName("Aderlass") end
    
    /run if not UnitDebuff("target", "Feuerbrand", unitCaster~="player") then CastSpellByName("Feuerbrand"); SpellTargetUnit("target") end
    
    /run if UnitHealth("Target") > 160000 and if UnitHealthMax("Target") < 5000000 and if not UnitDebuff("target", "Fluch der Elemente") then CastSpellByName("Fluch der Elemente") end end end
    
    /run local _,c,_ = GetSpellCooldown("Fluch der verdammnis") if (c == 0)  and if (UnitHealth("Target") > 5000000 and if not UnitDebuff("target","Fluch der Verdammnis", unitCaster~="player") then CastSpellByName("Fluch der Verdammnis") end end end end
    
    /run local _,a,_ = GetSpellCooldown("Feuersbrunst") if (a == 0) and if UnitDebuff("target", "Feuerbrand", unitCaster~="player") then CastSpellByName("Feuersbrunst"); SpellTargetUnit("target") end end
    
    /run local _,b,_ = GetSpellCooldown("Chaosblitz") if (b == 0) and if UnitDebuff("target", "Feuerbrand", unitCaster~="player") then CastSpellByName("Chaosblitz"); SpellTargetUnit("target") end end
    
    /run if UnitDebuff("target", "Feuerbrand", unitCaster~="player") then CastSpellByName("Verbrennen"); SpellTargetUnit("target") end
    
    /run if UnitAffectingCombat("player") then RunMacroText("/in 0.5 /run RunMacro(\"Destro1\")") end
    Last edited by Elitetech; 01-03-2010 at 04:17 PM.
    Knowledge is often mistaken for intelligence. This is like mistaking a cup of milk for a cow.

    [EPIC]Automate any Rotation 100% /w Lua.
  2. #77
    Zooza's Avatar Member
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You are my hero

    But, with /stopmacro I cant stop the Macro from starting again and agian and again ;(

  3. #78
    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)
    As for Affliction Warlock, I'll be posting my macro for it shortly in my macro library thread.

    As for moving this to Elite...there's not a lot of point IMO...Cypher's thread on LuaNinja is the real power here. Without it, this thread and all of the macros written by various people are meaningless.

    Edit: Direct link to Warlock
    Last edited by Viral Fly-by; 01-04-2010 at 03:26 PM.
    ViralFly-by

  4. #79
    Walacky's Avatar Member
    Reputation
    1
    Join Date
    Dec 2008
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What do you write if you want the macro to cast Conlfagrate, when the remaining time of Immolate is less than 2 seconds?

  5. #80
    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 Walacky View Post
    What do you write if you want the macro to cast Conlfagrate, when the remaining time of Immolate is less than 2 seconds?
    You can do all that...and much more...check out the macro threads for more information. I'll be writing a Destro Lock one eventually...

    But also...your question seems to imply not using Glyph of Conflagrate which I thought was basically standard for Destro.
    ViralFly-by

  6. #81
    Ranku's Avatar Member
    Reputation
    8
    Join Date
    Sep 2007
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sorry Im a bit of a noob, target a creature. Press the assinged macro button. Bam automaticly kills it correct?

  7. #82
    LordManwe's Avatar Member
    Reputation
    5
    Join Date
    Dec 2008
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This is pure gold, Will help me a lot for my Enh Shamie rotation.

    Thanks a lot!

  8. #83
    Baelzebub's Avatar Member
    Reputation
    1
    Join Date
    Apr 2007
    Posts
    68
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bye-bye
    For now

  9. #84
    emericaman012's Avatar Sergeant
    Reputation
    3
    Join Date
    Nov 2009
    Posts
    56
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    alright, i just got banned on my dk ,sad day for me , and they said i was using "hacks" "third-party software" and all i can remember using was Lua Ninja, not 100% sure on that though, blizz doesnt give records of the ban, just sends an email on why, gl with this tho guys :/
    ~~ Cool Story Bro.... ~~

  10. #85
    newky's Avatar Member
    Reputation
    1
    Join Date
    Aug 2009
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I too was banned for "hacks", and all I had ran was LUA Ninja. Beware all.

  11. #86
    collossysus's Avatar Private
    Reputation
    1
    Join Date
    Jan 2010
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Seems like a risky thing but thanks anyway

  12. #87
    Furryeye's Avatar Member
    Reputation
    10
    Join Date
    Jul 2009
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I to have just gotten banned for using third party software, and they told me on the phone i did it before christmas.. Checking when i downloaded the superdupermacro addon, i did it on 22nd of december..

    This seems to have been discovered.

  13. #88
    Unholyshaman's Avatar ★ Elder ★
    Reputation
    1517
    Join Date
    Jun 2007
    Posts
    2,827
    Thanks G/R
    20/20
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Furryeye View Post
    This seems to have been discovered.
    Originally Posted by emericaman012 View Post
    ...i just got banned...
    Originally Posted by newky View Post
    I too was banned for "hacks"...
    Originally Posted by Furryeye View Post
    I to have just gotten banned for using third party software...

    *cough* told you so *cough*

    Originally Posted by Unholy[S]haman View Post
    Elitetech, first great post.

    If I could make a recommendation, perhaps request that a moderator moves this into the Elite WoW Guides section to reduce the chance of Blizzard nerfing this or making it possible to pick it up with Warden etc.
    While it is very probably Blizz have already read this sort of thread, it doesn't necessarily mean they will do anything about it. But if it gets over used and abused, they will definitely consider finding a way to prevent this or finding a way to catch people using it. Either way just my two cents and good job again.
    Last edited by Unholyshaman; 01-12-2010 at 09:19 AM.

  14. #89
    swashyson's Avatar Banned
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    im 100% serious now i just got a perm ban r.i.p 2 lvl 80's and 4 years of my life was wasted.


    We are writing to inform you that we have, unfortunately, had to cancel your World of Warcraft account: Account Name: COOLSWASHYType of Violation: Use of third-party softwareConsequences for Account: Account Cancellation It is with regret that we take this type of action, however, it is in the best interest of the World of Warcraft community as a whole, and for the integrity of the game, that your access to the World of Warcraft servers be cancelled. If you wish to review our current Rules and Policies, they can be found at

  15. #90
    Unholyshaman's Avatar ★ Elder ★
    Reputation
    1517
    Join Date
    Jun 2007
    Posts
    2,827
    Thanks G/R
    20/20
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Are they permanently banning you or just account banning I wonder?

    "your access to the World of Warcraft servers be cancelled".

    You can't really blame the author of this thread or anyone else tbh.

    It is against Blizzard ToS to use this sort of stuff and you took the risk of using it. It is the same as people who used Glider and got hit by the Ban Waves. Both them and the author of this thread did their best to provide the best product they could.

Page 6 of 7 FirstFirst ... 234567 LastLast

Similar Threads

  1. Top 100 rankings achievable with any rotations?
    By dotonthewall in forum WoW Bots Questions & Requests
    Replies: 10
    Last Post: 02-08-2015, 12:15 PM
  2. [Hunter] Automated Shot Rotation
    By CrazyCactuaR in forum WoW UI, Macros and Talent Specs
    Replies: 3
    Last Post: 12-11-2008, 02:27 PM
  3. [Epic Release] Rick Astley - Rickroll Boss [LUA]
    By Creepfold in forum WoW EMU General Releases
    Replies: 13
    Last Post: 10-04-2008, 10:01 PM
All times are GMT -5. The time now is 08:09 AM. 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