Almost perfect dps with one button click menu

User Tag List

Page 1 of 3 123 LastLast
Results 1 to 15 of 32
  1. #1
    kildare's Avatar Active Member
    Reputation
    24
    Join Date
    Sep 2008
    Posts
    43
    Thanks G/R
    10/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Almost perfect dps with one button click

    With the release of the amazing tool WoWLuaEnabler by Kynox-- http://www.mmowned.com/forums/bots-p...a-enabler.html we can now execute commands blocked by Blizzard as CastSpellbyName(Spell). So why dont use it as bot to optimizate our dps. I will post only my findings of Feral druid Cat.

    With cat we have to do the following steps to maximize our dps:
    ・Glyph Mangle + Rip

    Normal Cycle

    Faerie Fire always

    1. Omen of Clarity-->Shred
    2. Mangle and Rake always dot-->Mangle or Rake
    3. 40 energy-->Tiger Fury
    4. Mangle and Rake active-->Shred

    Finishers
    1. Omen of Clarity and 5 points --> Ferocious Bit
    2. Savage Roar(SR) inactive-->Savage Roar (at least 2cp)
    3. SR active-->Rip with 5cp
    4. SR+Rip active and time of rip>5 -->Ferocious Bite
    5. Rip<5-->Rip or shred

    so we are using macrosequence to do many checks and break the 255 char barrier-> http://www.wowinterface.com/download...-MacroSequence

    unzip the file to your wow directory\Interface\Addons and edit the sequences.lua to the following:

    Code:
    Faeriefirecat = {
        [[
    /run if not UnitDebuff("target","Faerie Fire (feral)") or UnitDebuff("target","Faerie Fire") then CastSpellByName("Faerie Fire (Feral)(Rank 6)") end
        ]],
       },
    
    Catdps1 = {
        [[
    /run if UnitBuff("Player","Clearcasting") and GetComboPoints("player")==5 then CastSpellByName("Ferocious Bite(Rank 8)") else if UnitBuff("Player","Clearcasting") then CastSpellByName("Shred(Rank 9)") end end
    /run if UnitHealth("target")<=15000 and GetComboPoints("player")>=4 then CastSpellByName("Ferocious Bite(Rank 8)") end
    /run if UnitPower("player")<=40 then CastSpellByName("Tiger's Fury(Rank 6)") end
        ]],
      },
    
    Catdps2 = {
        [[
    /run if GetComboPoints("player")>=2 then if not UnitBuff("Player","Savage Roar") then CastSpellByName("Savage Roar") end end
    /run local name,a,b,c,d,e,f,mine=UnitDebuff("Target","Rip") if GetComboPoints("player")==5 then if UnitDebuff("Target","Rip") and mine==1 and (-1*(GetTime()-f))>4 then CastSpellByName("Ferocious Bite(Rank 8)") else CastSpellByName("Rip(Rank 9)") end end
    /run local name,a,b,c,d,e,f,mine=UnitDebuff("target","Rake") if UnitDebuff("target","Mangle - Cat") then if UnitDebuff("target","Rake") and mine ==1 then CastSpellByName("Shred(Rank 9)") else CastSpellByName("Rake(Rank 7)") end else CastSpellByName("Mangle - Cat(Rank 5)") end
        ]],
      },
    time to create one macro with:
    /startattack
    /click Faeriefirecat
    /click Catdps1
    /click Catdps2

    the motive i divide the script into Catdps1 and Catdps2 is because macrosequence has a bug with more of 4 line of code.

    Finishing, if you are really lazy(as me)use the following autoit script to do multi keypress of button 1
    Code:
    ;
    ; AutoHotkey Version: 1.x
    ; Language:       English
    ; Platform:       Win9x/NT
    ; Author:         A.N.Other <[email protected]>
    ;
    ; Script Function:
    ;	Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
    ;
    
    #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
    SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
    SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
    
    #ifWinActive World of Warcraft
    {
    $1::
       Loop 
       {
        if not GetKeyState("1", "P")
          break
         Send 1
         sleep 1
        }
    return
    }
    have fun
    Last edited by kildare; 01-23-2009 at 08:57 AM.

    Almost perfect dps with one button click
  2. #2
    Senzuri's Avatar Member
    Reputation
    5
    Join Date
    Jun 2008
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    first link isn't working

  3. #3
    kgribbe's Avatar Member
    Reputation
    16
    Join Date
    May 2007
    Posts
    67
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Senzuri View Post
    first link isn't working
    http://www.mmowned.com/forums/bots-p...a-enabler.html

  4. #4
    Ketels's Avatar Member
    Reputation
    1
    Join Date
    Jan 2009
    Posts
    56
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks cool if it works good job

  5. #5
    DragonWaxter's Avatar Active Member
    Reputation
    51
    Join Date
    Aug 2006
    Posts
    348
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wrote this yourself?
    WZ7K4HW9XZW9

  6. #6
    CryptoCombat's Avatar Contributor #define ME 0x1337 CoreCoins Purchaser
    Reputation
    194
    Join Date
    Jan 2009
    Posts
    473
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    sorry, need info on how to disable server-side addon caching

  7. #7
    kildare's Avatar Active Member
    Reputation
    24
    Join Date
    Sep 2008
    Posts
    43
    Thanks G/R
    10/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DragonWaxter View Post
    Wrote this yourself?
    yes, the script on macro/lua . But only works with the wowluaenabler of kynox

    and, i think you need disable addon caching if you are using direct macros to do commands blockeds by Blizzard. But here the commands are stored on macrosequence addon, which no will be cached by wow server, only the config and macro created:
    /startattack
    /click Faeriefirecat
    /click Catdps1
    /click Catdps2

    nothing to worry about that

  8. #8
    holdenv10's Avatar Member
    Reputation
    1
    Join Date
    Jan 2008
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kildare View Post
    yes, the script on macro/lua . But only works with the wowluaenabler of kynox

    and, i think you need disable addon caching if you are using direct macros to do commands blockeds by Blizzard. But here the commands are stored on macrosequence addon, which no will be cached by wow server, only the config and macro created:
    /startattack
    /click Faeriefirecat
    /click Catdps1
    /click Catdps2

    nothing to worry about that
    did 3.0.8 break macrosequence? i can't seem to make it work, my button does nothing... at all.

  9. #9
    dbalauca's Avatar Member
    Reputation
    6
    Join Date
    Sep 2008
    Posts
    102
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is this legal ? or we risk getting banned for doing this ?

    i'm a feral druid so it sounds very temptant

  10. #10
    nikomo's Avatar Member
    Reputation
    19
    Join Date
    Dec 2007
    Posts
    207
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's not allowed and if caught, you will be banned.
    And I'd say the risk is quite high.

  11. #11
    8334c34f2234's Avatar Member
    Reputation
    11
    Join Date
    Jun 2008
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks works very well!

  12. #12
    omfgwtflolmfao's Avatar Member
    Reputation
    43
    Join Date
    Jan 2009
    Posts
    430
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    well it works but dont try this on your main accounts Lol

  13. #13
    gdc2000's Avatar Member
    Reputation
    3
    Join Date
    Feb 2007
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nikomo View Post
    It's not allowed and if caught, you will be banned.
    And I'd say the risk is quite high.

    I will have to agree with you on that one. Cool but looks like insta-ban.

  14. #14
    DeadDream's Avatar Member
    Reputation
    4
    Join Date
    Jun 2008
    Posts
    35
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What dps do you manage to pull as cat with this bot?
    25ppl Patchwerk for example?

  15. #15
    kildare's Avatar Active Member
    Reputation
    24
    Join Date
    Sep 2008
    Posts
    43
    Thanks G/R
    10/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    * Damage: 831 - 1048
    * Speed: .97
    * Power 6650
    * Hit Rating: 245
    * Crit Chance: 46.45%
    * Expertise: 25
    unbuffered stats

    ~4.6k dps on patchwerk
    Last edited by kildare; 01-22-2009 at 05:47 PM.

Page 1 of 3 123 LastLast

Similar Threads

  1. [How-To] Queue/Join specific BG's with one Button
    By JhonnyQ in forum World of Warcraft Guides
    Replies: 0
    Last Post: 07-29-2016, 05:16 AM
  2. Cancel Lots of Auctions With One Click
    By DrWho1988 in forum WoW UI, Macros and Talent Specs
    Replies: 4
    Last Post: 08-20-2010, 11:46 AM
  3. Multifunctional NPC, change the weather and your gender with one button!
    By Daimyo2704 in forum WoW EMU General Releases
    Replies: 3
    Last Post: 11-01-2009, 11:10 AM
  4. [Macro] 1-button click Warlock dps
    By [Soul Eater] in forum World of Warcraft Guides
    Replies: 23
    Last Post: 05-11-2009, 06:07 PM
  5. [Macro] Sell all gray items with one click.
    By Alkhara Majere in forum World of Warcraft Bots and Programs
    Replies: 29
    Last Post: 02-19-2007, 01:07 PM
All times are GMT -5. The time now is 04:39 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