PQR - Rotation Bot menu

User Tag List

Page 36 of 779 FirstFirst ... 32333435363738394086136536 ... LastLast
Results 526 to 540 of 11681
  1. #526
    Noelpqr's Avatar Member
    Reputation
    3
    Join Date
    Oct 2011
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by hbkx1 View Post
    anyone have a link for a good disc profile....I remember one back in the old pqr but cant seem it find it searching
    which spec you are looking for the AA or non-AA?
    I dont have much knowledge about AA but I modified Sheuron's disc priest to get a pqr profile for the AA priest.
    and i done normal ds with it but is working as it should be or not , I am not sure.

    PQR - Rotation Bot
  2. #527
    onya's Avatar Member
    Reputation
    67
    Join Date
    May 2008
    Posts
    152
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by js1974 View Post
    Well here is the code.

    Code:
    if IsRightShiftKeyDown() then
    RunMacroText("/equipset 4pt11")
    RunMacroText("/cast Guardian of Ancient Kings")
    RunMacroText("/equipset n4pt11")
    return true 
    end
    
    Now the issue in game that happens is it equips the right gear set, Then it used Guardian of Ancient Kings. Now the issue comes into play the 3rd line it's equipping a new gearset but due to the GCD incurred by swapping gear for the first set the 3rd equipset never goes off so it never swaps back into the proper gear. I figure it's because the gear swap is attempted during the GCD.
    i'd be doing something more like this rather than using macros

    Code:
    if PQR_SpellAvailable(86150) and IsRightShiftKeyDown() then
      if UseEquipmentSet("4pt11") then
        CastSpellByID(86150)
        return true
      end
    end
    if  not PQR_SpellAvailable(86150) and IsRightShiftKeyDown() then
      UseEquipmentSet("n4pt11")
    end
    Last edited by onya; 05-21-2012 at 03:27 AM.
    Shaman resto and elemental profiles for PQRotation can be downloaded from here - https://db.tt/g2pIFrBc
    Tradeskill profile (Jewelcrafting and disenchant) download here - https://db.tt/aPpOTKJH

  3. #528
    PuffDank's Avatar Active Member
    Reputation
    38
    Join Date
    Oct 2007
    Posts
    239
    Thanks G/R
    0/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by lawlmoto View Post
    If you need heals on a hunter just soloing you're probably doing something wrong.

    I'm still without computer but I've gotten an unlimited data plan for my phone.

    Sent from my Galaxy Nexus using Tapatalk 2
    I was kind of looking for a solution to the problem, not a sarcastic filler reply.

    I am botting the hunter and to prevent any downtime to eat etc, I am trying to get the shaman to heal him (OUT OF PARTY)
    AIM - Irakcrimes
    SKYPE - Iraxcrimes

  4. #529
    onya's Avatar Member
    Reputation
    67
    Join Date
    May 2008
    Posts
    152
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by PuffDank View Post
    I was kind of looking for a solution to the problem, not a sarcastic filler reply.

    I am botting the hunter and to prevent any downtime to eat etc, I am trying to get the shaman to heal him (OUT OF PARTY)
    you'd have to target or focus the hunter for this to work. my prfile won't do this, maybe sheurons will.
    Shaman resto and elemental profiles for PQRotation can be downloaded from here - https://db.tt/g2pIFrBc
    Tradeskill profile (Jewelcrafting and disenchant) download here - https://db.tt/aPpOTKJH

  5. #530
    PuffDank's Avatar Active Member
    Reputation
    38
    Join Date
    Oct 2007
    Posts
    239
    Thanks G/R
    0/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by onya View Post
    you'd have to target or focus the hunter for this to work. my prfile won't do this, maybe sheurons will.
    Thank you for the response, your profile is the one I have been using and I gotta say its GREAT.

    Is there any work-around I could put in? Keeping the hunter targeted wouldn't be a problem..
    AIM - Irakcrimes
    SKYPE - Iraxcrimes

  6. #531
    abndrew82's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2008
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by PuffDank View Post
    Thank you for the response, your profile is the one I have been using and I gotta say its GREAT.

    Is there any work-around I could put in? Keeping the hunter targeted wouldn't be a problem..
    My first question would be you said your botting the hunter, if you are doing this afk how do you plan to also make sure the Shaman stays with the Hunter.

    Or are you just basically running the hunter through things with the bot handling the fights.

  7. #532
    Ralphiuss's Avatar Active Member
    Reputation
    44
    Join Date
    Sep 2011
    Posts
    230
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by js1974 View Post
    Ralphiuss, After checking the code for your rotation I have a few suggestions.

    For Gloves and Trinket use I suggest this code.

    Code:
    -- Check Trinket Cooldown info
    local _, Cooldown, Ready = GetInventoryItemCooldown("player",10)
    
    
    -- Check Cooldown and Combat status
    if Cooldown == 0 and
       Ready == 1 and
       UnitChannelInfo("player") == nil and
       UnitAffectingCombat("player") ~= nil
    then
    
    
      UseInventoryItem(10) 
      return true
    
    
    end
    This is mainly because I've seen my gauntlets just fire for no apparent reason this makes sure that doesn't happen. Now the second thing with this rotation is you are using TV code like this.

    Code:
    local holyPower = UnitPower("player", 9)
    local divinePurpose = PQR_UnitBuffID("player", 86172)
    
    
    
    
    
    
    if holyPower >= 3 or divinePurpose ~= nil then
        return true
    end
    Because of DP Procs vs HoPo they should be split up so you can give one priority over the other. I would suggest breaking them up and using.

    Code:
    local divinePurpose = PQR_UnitBuffID("player", 86172)
    
    
    if divinePurpose ~= nil then
        return true
    end
    and

    Code:
    local holyPower = UnitPower("player", 9)
    
    
    if holyPower >= 3 then
        return true
    end
    This allows you to make sure a TV from DP is used before 3 HP TV and you can squeeze Exorcism procs before a TVHP as they should be used first. On top of that consecration in your rotation and divine plea are bad unless you have control over it. You don't want them to be used in a rotation you want them used when you have a gap in your rotation dead time with nothing to do. The only way I have been able to figure this out is a lot of calculations based on when your higher priority ability is coming off CD to avoid clashing with higher DPE abilities.

    For encounter code, I'm not sure about your guild but for me on Heroic I stay out for 2 Ultra hot phases so I have to have a way to avoid hitting that button. I'd suggest adding a skip key for that.

    Code:
    local altDown = IsAltKeyDown()
    local sDivineShield = UnitBuffID("player", 642)
    
    
    if altDown == nil then
        local spellHourOfTwilight = GetSpellInfo(109417)
        local channelSpell, _, _, _, _, endTime = UnitCastingInfo("boss1")
        if channelSpell ~= nil and channelSpell == spellHourOfTwilight then
            local finishTime = endTime/1000 - GetTime()
            if finishTime < 1 and sDivineShield == nil then
                return true
            end
        end
    end
    You have some code I grabbed, like the CD's code works better then a macro so I'm all down for that. Some good code I'm still trying to determine the Zealotry rotation and if I like that or just the logic I use to handle it. Your DPS is about 3K behind mine but 3K can be accounted for by DP procs or Gurthalak procs.

    Solid work either way just my $0.02 worth

    PS

    Add the encounters to your Zealotry rotation or you could end up dead for not pressing your button
    I happen to agree with these changes and made the changes to the profile. New version upped to the SVN. If you are using this profile please use the internal updater to update the profile.

    I also removed consecration from the rotation as I was going trough top ret paladins on world of logs. I noticed most of them stopped using consecration during single target fights. Let's see how that works out.

    Also does anyone have any experience using the expression editor on world of logs? I would like it to show sourceName + fullType = SPELL_CAST_SUCCESS + powerType = POWER_HOLY_POWER if that's even possible.

  8. #533
    PuffDank's Avatar Active Member
    Reputation
    38
    Join Date
    Oct 2007
    Posts
    239
    Thanks G/R
    0/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by abndrew82 View Post
    My first question would be you said your botting the hunter, if you are doing this afk how do you plan to also make sure the Shaman stays with the Hunter.

    Or are you just basically running the hunter through things with the bot handling the fights.
    Very basic botting so shaman would just be able to always follow hunter
    AIM - Irakcrimes
    SKYPE - Iraxcrimes

  9. #534
    js1974's Avatar Member
    Reputation
    27
    Join Date
    Jan 2008
    Posts
    199
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by onya View Post
    i'd be doing something more like this rather than using macros

    Code:
    if PQR_SpellAvailable(86150) and IsRightShiftKeyDown() then
      if UseEquipmentSet("4pt11") then
        CastSpellByID(86150)
        return true
      end
    end
    if  not PQR_SpellAvailable(86150) and IsRightShiftKeyDown() then
      UseEquipmentSet("n4pt11")
    end
    Would this require hitting it twice or pressing it once would do both?

  10. #535
    onya's Avatar Member
    Reputation
    67
    Join Date
    May 2008
    Posts
    152
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by js1974 View Post
    Would this require hitting it twice or pressing it once would do both?
    i was thinking holding it down until it's done both. you could have it work with a key tap but that would involve using a timer and stuff. considering you're only going to use this before a fight i figured this was good enough :P
    Shaman resto and elemental profiles for PQRotation can be downloaded from here - https://db.tt/g2pIFrBc
    Tradeskill profile (Jewelcrafting and disenchant) download here - https://db.tt/aPpOTKJH

  11. #536
    Noisedodps's Avatar Private
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    still searching a Moonkin Profile

  12. #537
    Ralphiuss's Avatar Active Member
    Reputation
    44
    Join Date
    Sep 2011
    Posts
    230
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Noisedodps View Post
    still searching a Moonkin Profile
    Profile by firepong isn't too bad.

  13. #538
    Noisedodps's Avatar Private
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Na^^
    Ive tested some Profiles and Novas makes the most DPS, but Starsurge is bugged so it want use Starsurge Proc and on cooldown

  14. #539
    Waffle's Avatar Contributor CoreCoins Purchaser
    Reputation
    115
    Join Date
    Sep 2007
    Posts
    91
    Thanks G/R
    0/0
    Trade Feedback
    5 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by lolomo2003 View Post
    For me is Sheuron profile if you want a complex one or Daxavi for a simple but very efficient one.
    Could you link me Daxavi's profile? Searched thread and old thread and I couldn't find anything.

  15. #540
    jazman84's Avatar Site Donator
    Reputation
    41
    Join Date
    May 2008
    Posts
    185
    Thanks G/R
    2/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I noticed there are profiles for Ret in MoP, are ther any Arms profiles?

    Thanks.

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 11:36 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