PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 276 of 779 FirstFirst ... 176226272273274275276277278279280326376776 ... LastLast
Results 4,126 to 4,140 of 11681
  1. #4126
    xLegendx's Avatar Member
    Reputation
    14
    Join Date
    Sep 2011
    Posts
    827
    Thanks G/R
    3/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Dominium,

    Any recommended Glyphs? xD

    PQR - Rotation Bot
  2. #4127
    Dominium's Avatar Contributor
    Reputation
    124
    Join Date
    Dec 2011
    Posts
    389
    Thanks G/R
    0/1
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Another update - DOWNLOAD

    Added emancipate for freezes (mage frost nova, pet nova, shaman frost shock nova etc), emancipate for slows with the lowest priority = if no other spell available and u got a slow it will emancipate (so better use emancipate urself)

    added bubble at 20%

    nvm just tested emancipate doesnt work but who cares ;P

    also tested in 2 bgs the profile absolutely kicks ass at dmg and healing.

    I hope you enjoy this till mop comes and me and avery release a better profile for arenas etc )

    ooooh also added turn evil on mouseover

    glyphs: rebuke, templars verdict, turn evil

    Cheers!

    edit: emancipate seems to work but its just that I only added like 3-4 spells for it to remove ;p
    Last edited by Dominium; 09-17-2012 at 02:20 PM.

  3. #4128
    Dominium's Avatar Contributor
    Reputation
    124
    Join Date
    Dec 2011
    Posts
    389
    Thanks G/R
    0/1
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    btw WTB code for how to check stacks of a buff. so I can add selfless healer )

  4. #4129
    belialadin's Avatar Member
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone get hemorrhage (rogue) to work? currently, glyphed; it's spell id is different but i've tried unglyphed and that does not seem to work either.

  5. #4130
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,033
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Dominium View Post
    btw WTB code for how to check stacks of a buff. so I can add selfless healer )
    select(4, UnitDebuffID("spellid"))) that should return stacks of a buff/debuff

    Please if someone helped you donate rep to them.

  6. #4131
    Taran32's Avatar Knight-Lieutenant
    Reputation
    9
    Join Date
    Feb 2012
    Posts
    369
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Dominium View Post
    btw WTB code for how to check stacks of a buff. so I can add selfless healer )
    Working great so far! I was so used to the auto-seal habits of PQR that I literally just now realized my "auto attack mode" problems earlier were due to lack of seal lol. Great work, Dom. Can't wait for future updates .

  7. #4132
    Dominium's Avatar Contributor
    Reputation
    124
    Join Date
    Dec 2011
    Posts
    389
    Thanks G/R
    0/1
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    select(4, UnitDebuffID("spellid"))) that should return stacks of a buff/debuff
    Got it working with

    local sh = select(4, UnitAura("player", "Selfless Healer"))

    if sh == 3 then
    return true
    end

    But thanks anyway

  8. #4133
    Dominium's Avatar Contributor
    Reputation
    124
    Join Date
    Dec 2011
    Posts
    389
    Thanks G/R
    0/1
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Taran32 View Post
    Working great so far! I was so used to the auto-seal habits of PQR that I literally just now realized my "auto attack mode" problems earlier were due to lack of seal lol. Great work, Dom. Can't wait for future updates .
    Lol, totally forgot to add seals and buffs. Oh well. Ill add that + selfless healer (I crit 130k with it!!) tomorrow, feeding + sleeping time now. Ty glad you like it


    HOPEFULLY last update for a longer while so that I can concentrate on coding Hand of Freedom and some tricks into the actual PvP profile together with Averykey. Added buffs (Might and seals) as well as - SELFLESS HEALER! Its epic. Only bug that I see is the typical usage of inquisition over WoG (even if I am at really low hp) but that can be fixed easily.

    So now take selfless healer instead of sacred shield

    Enjoy!

    http://dl.dropbox.com/u/46903116/Domi%20premop%20v4.rar
    Last edited by Dominium; 09-17-2012 at 02:53 PM.

  9. #4134
    Wopak's Avatar Active Member
    Reputation
    59
    Join Date
    Jul 2008
    Posts
    96
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Dominium View Post
    btw WTB code for how to check stacks of a buff. so I can add selfless healer )
    PHP Code:
    -- Returns how many stacks of a Buff the player has.
    -- 
    Returns 0 if Buff isn't found.
    -- Arguments
    ---- buff: Name of buff to check
    function fawBuffStacksAny(buff)
        local name, _, _, count = UnitBuff("player", buff);
        if not name then count = 0; end
        if name and count == 0 then count = count + 1; end
        return count;
    end 

  10. #4135
    Dominium's Avatar Contributor
    Reputation
    124
    Join Date
    Dec 2011
    Posts
    389
    Thanks G/R
    0/1
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Wopak View Post
    PHP Code:
    -- Returns how many stacks of a Buff the player has.
    -- 
    Returns 0 if Buff isn't found.
    -- Arguments
    ---- buff: Name of buff to check
    function fawBuffStacksAny(buff)
        local name, _, _, count = UnitBuff("player", buff);
        if not name then count = 0; end
        if name and count == 0 then count = count + 1; end
        return count;
    end 
    Thanks mate, already managed to get it working with UnitAura tho

  11. #4136
    Wopak's Avatar Active Member
    Reputation
    59
    Join Date
    Jul 2008
    Posts
    96
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Dominium View Post
    Thanks mate, already managed to get it working with UnitAura tho
    Ye UnitAura works too. UnitBuff and UnitDebuff just allready have the filters set

    gl with the Ret Pally profile, lets see what you come up with, i managed 2.3k in 3s last season with my rotation addon

  12. #4137
    Dominium's Avatar Contributor
    Reputation
    124
    Join Date
    Dec 2011
    Posts
    389
    Thanks G/R
    0/1
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Wopak View Post
    Ye UnitAura works too. UnitBuff and UnitDebuff just allready have the filters set

    gl with the Ret Pally profile, lets see what you come up with, i managed 2.3k in 3s last season with my rotation addon
    Thanks, still have quite a bit of work to do but should be good

  13. #4138
    blacknightlll's Avatar Member
    Reputation
    4
    Join Date
    Mar 2009
    Posts
    154
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For hemo spell Id use sinister strike

  14. #4139
    belialadin's Avatar Member
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by blacknightlll View Post
    For hemo spell Id use sinister strike
    thank you so much! now i can watch my victims bleeeeeeeeed. also, Inferno Blast = Fire Blast.. still trying to figure out Living Bomb
    Last edited by belialadin; 09-18-2012 at 11:02 AM.

  15. #4140
    farnumdizzle's Avatar Master Sergeant
    Reputation
    32
    Join Date
    Mar 2012
    Posts
    93
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey guys, been awhile. Can anyone tell me what Nova's Pally Holy Swap profiles are? I've been gone for awhile and saw a bunch of new stuff and don't know what it all means :P Keep up the good work guys!

    Edit: I'm trying the Nova profiles and when I try to start PQR I just get a bunch of LUA errors. I've updated everything and using a fresh download of PQR. Am I missing something else now?
    Last edited by farnumdizzle; 09-17-2012 at 05:10 PM.

Similar Threads

  1. [Bot] PQR PE Next Steps / Future of Rotation Botting
    By Chevrolet1 in forum World of Warcraft Bots and Programs
    Replies: 120
    Last Post: 10-21-2014, 11:47 AM
  2. [Bot] PQR - Rotation Bot
    By Xelper in forum World of Warcraft Bots and Programs
    Replies: 1738
    Last Post: 10-15-2014, 11:00 AM
  3. [Selling] 3 Lifetime Session Keys For Sale, Great for the PQR user looking for a rotation bot
    By cukiemunster in forum World of Warcraft Buy Sell Trade
    Replies: 13
    Last Post: 03-11-2014, 07:18 AM
  4. rotation bot leveling (PQR)
    By classdog in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 09-17-2013, 06:13 PM
  5. [HELP] PQR Rotation Bot Profile Making
    By Missu in forum Programming
    Replies: 0
    Last Post: 10-22-2012, 06:27 AM
All times are GMT -5. The time now is 03:50 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