PQR - Rotation Bot menu

User Tag List

Page 197 of 779 FirstFirst ... 97147193194195196197198199200201247297697 ... LastLast
Results 2,941 to 2,955 of 11681
  1. #2941
    rippy1987's Avatar Member
    Reputation
    6
    Join Date
    May 2012
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any balance profiles?

    PQR - Rotation Bot
  2. #2942
    temp123's Avatar Member
    Reputation
    11
    Join Date
    May 2012
    Posts
    247
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by [Blinded] View Post
    [Blinded]_Rogue_5.0.4.rar

    5.0.4 Assassination Rogue profile, test and rate it. ( You have to use vanish on your own )

    The other specs will follow.
    Great stuff going to try previous assassination profile and get back on yours, thanks

  3. #2943
    Unamola's Avatar Member
    Reputation
    1
    Join Date
    May 2009
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can any 1 help me?

    i want to cast searing totem but if i manual cast fire elemental dont replace ir whid searing


    this is what i have so far

    Code:
    local srTimer, SearingTotem = GetTotemInfo(1)
    
    if SearingTotem ~= "Searing Totem"
    or IsControlKeyDown()
    and SearingTotem ~= "Fire Elemental Totem" then
    	return true
    end

  4. #2944
    temp123's Avatar Member
    Reputation
    11
    Join Date
    May 2012
    Posts
    247
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Very very well done blinded, super smooth

  5. #2945
    piratepetey's Avatar Sergeant
    Reputation
    4
    Join Date
    Apr 2012
    Posts
    63
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi,

    Perhaps I'm being dense, but it has been mentioned in a previous post that Team Nova has released a shadow priest MoP release. Where did you find that? I looked at bu_ba_911's SVN but the only one there doesn't work...

    Cheers for the help.

  6. #2946
    temp123's Avatar Member
    Reputation
    11
    Join Date
    May 2012
    Posts
    247
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by piratepetey View Post
    Hi,

    Perhaps I'm being dense, but it has been mentioned in a previous post that Team Nova has released a shadow priest MoP release. Where did you find that? I looked at bu_ba_911's SVN but the only one there doesn't work...

    Cheers for the help.
    They said it has to bee looked in to by mentally, who knows when

  7. #2947
    odano1988's Avatar Member
    Reputation
    3
    Join Date
    Jun 2011
    Posts
    194
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok. Can anyone answer why there is lag when only using pqr?

  8. #2948
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm trying to get this code to look for the duration of frenzy stacks and if the duration gets down to 3s to use the Focus Fire ability so that the frenzy stack is not wasted. Any ideas on what i'm doing wrong.

    Code:
    if  select(4,UnitBuffID("player",19615)) == 5
    and not not UnitBuffID("player",34471)
    and select(2,GetSpellCooldown(19574)) > 40  or  select(7,UnitBuffID("player",19615))  < 3
    then return true end
    Any ideas?
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017

  9. #2949
    nilrem2004's Avatar Contributor
    Reputation
    163
    Join Date
    Mar 2009
    Posts
    810
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    It's probably a problem with PQR or wow there are a number of abilities that aren't casting with the correct spell id try this.

    Code:
    CastSpellByName(GetSpellInfo(30108),nil)
    return true
    After resolving Unstable Affliction problem, I your way for Malefic grasp, ID is 103103 it seems but can't get it to cast. When it comes to casting it, FPS drops like to 12-15fps.

  10. #2950
    firepong's Avatar Elite User
    Reputation
    384
    Join Date
    Jan 2008
    Posts
    955
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    I'm trying to get this code to look for the duration of frenzy stacks and if the duration gets down to 3s to use the Focus Fire ability so that the frenzy stack is not wasted. Any ideas on what i'm doing wrong.

    Code:
    if  select(4,UnitBuffID("player",19615)) == 5
    and not not UnitBuffID("player",34471)
    and select(2,GetSpellCooldown(19574)) > 40  or  select(7,UnitBuffID("player",19615))  < 3
    then return true end
    Any ideas?
    Wanna move the select(7,... up top, to where it's one of the first to be called. Either that or just put it in it's own thing.

    Code:
    if  (select(4,UnitBuffID("player",19615)) == 5  or  select(7,UnitBuffID("player",19615)) < 3)
    and not not UnitBuffID("player",34471)
    and select(2,GetSpellCooldown(19574)) > 40
    then return true end

  11. #2951
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    Wanna move the select(7,... up top, to where it's one of the first to be called. Either that or just put it in it's own thing.

    Code:
    if  (select(4,UnitBuffID("player",19615)) == 5  or  select(7,UnitBuffID("player",19615)) < 3)
    and not not UnitBuffID("player",34471)
    and select(2,GetSpellCooldown(19574)) > 40
    then return true end
    thank you very much
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017

  12. #2952
    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)
    Hey blinded can you put it on your rogue page under the profiles thingy so it easier to find and comments don't get lost?

  13. #2953
    Marvalus's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by averykey View Post
    I asked about hammer of wrath on elitistjerks and mmochamp, they said it's not really worth it in this patch, and exo is removed for prot?

    edit:

    My dropbox isn't down, just checked all the links.

    repost links


    https://dl.dropbox.com/u/44039495/Av..._Rotations.xml
    https://dl.dropbox.com/u/44039495/Av..._Abilities.xml

    or

    https://dl.dropbox.com/u/44039495/AveryMOP.zip



    to the people looking for paladin profiles, nudex also has a prot profile, haven't tried it yet though, will soon.

    http://www.ownedcore.com/forums/worl...ml#post2468048 (Avery Ret Profile)
    When i choose the singletarget prof, pqr forces me to use the seal of insight. Help :/

  14. #2954
    tatakau's Avatar Member
    Reputation
    2
    Join Date
    Mar 2008
    Posts
    93
    Thanks G/R
    10/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I want to update a profile for myself, I need a lot of knowledge?

  15. #2955
    Vogel81's Avatar Master Sergeant
    Reputation
    22
    Join Date
    Feb 2012
    Posts
    105
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by [Blinded] View Post
    [Blinded]_Rogue_5.0.4.rar

    5.0.4 Assassination Rogue profile, test and rate it. ( You have to use vanish on your own )

    The other specs will follow.
    <3 Can't wait! Sub looks like it should be great if you can pull it off Rep coming your way.

    Blinded: First test looks smooth, only problem is when you manually Vanish it does not seem to be using Ambush, and instead is running the normal rotation in stealth, which I'm guessing is because it doesn't have the energy for Ambush so it moves along to later parts.
    Last edited by Vogel81; 08-30-2012 at 01:35 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: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