PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 380 of 779 FirstFirst ... 280330376377378379380381382383384430480 ... LastLast
Results 5,686 to 5,700 of 11681
  1. #5686
    Kinkeh's Avatar Established Member
    Reputation
    243
    Join Date
    Jan 2012
    Posts
    450
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by reapagedk View Post
    hey Kinkeh the DND isn't working on right shift it only switches between single target and aoe mode
    It's left control.

    PQR - Rotation Bot
  2. #5687
    MACH9 WoW Services's Avatar Member CoreCoins Purchaser
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    219
    Thanks G/R
    1/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey all I'm having trouble with PQR with a couple of profiles, when not using PQR it doesn't happen EVER. My game abilities lock up and I can't press any of them :/ It shows that I'm pressing the key because it highlights on the actionbar but doesn't actually use the bar it's like I've been silenced but not really?

    Tried deleting and disable addons, tried even new keyboard.. same problem but only PQR

  3. #5688
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If anyone can test this code on Amber-Shaper Unsok that would be great...It will interrupt the ability you need to interrupt when you are reshaped. It will also exit the form if <8 wisdom.

    Ability: Boss Special
    Spell ID: 0
    Code:
    --Amber Shaper
    
    
    if UnitExists("boss1") then
        local npcID = tonumber(UnitGUID("boss1"):sub(6,10), 16)
        if npcID == 62511 then --Amber Shaper
            local reshapeLife = UnitDebuffID("player", 122370)
            
            if reshapeLife then
                --Player is mind controlled.
                local playerCasting = UnitCastingInfo("player")
                local amberExplosion = GetSpellInfo(122402)
                local struggleForControl = GetSpellInfo(122395)
                local amberStrike = GetSpellInfo(122389)
                local breakFree = GetSpellInfo(123060)
                local playerWisdom = UnitPower("player", 10) --"Wisdom" power.
                
                if playerWisdom <= 8 then
                    RunMacroText("/cast "..breakFree)
                end
                
                if UnitExists("boss2") then
                    --62711
                    local npcID = tonumber(UnitGUID("boss2"):sub(6,10), 16)
                    if npcID == 62711 then
                        local bossCasting = UnitCastingInfo("boss2")
                        if bossCasting == amberExplosion then
                            --boss is casting.
                            RunMacroText("/cast "..amberStrike)
                        else
                            if playerCasting == amberExplosion then
                                RunMacroText("/cast "..struggleForControl)
                            end
                        end
                    end
                else
                    if playerCasting == amberExplosion then
                        RunMacroText("/cast "..struggleForControl)
                    end
                end
                
            end
        end
    end
    Specifically if: "player" works even though the player is in a vehicle.
    Does RunMacroText /cast work on the abilities.
    Can RunMacroText() be replaced with CastSpellByName

    We might need to change the "player" UnitId to "vehicle"
    Last edited by Xelper; 11-06-2012 at 01:15 AM.

  4. #5689
    MACH9 WoW Services's Avatar Member CoreCoins Purchaser
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    219
    Thanks G/R
    1/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Xelper if anyone knows the answer my problem, it would have to be you since your a Dev :P

  5. #5690
    Kinkeh's Avatar Established Member
    Reputation
    243
    Join Date
    Jan 2012
    Posts
    450
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    If anyone can test this code on Amber-Shaper Unsok that would be great...It will interrupt the ability you need to interrupt when you are reshaped. It will also exit the form if <8 wisdom.

    Ability: Boss Special
    Spell ID: 0
    Code:
    --Amber Shaper
    
    
    if UnitExists("boss1") then
        local npcID = tonumber(UnitGUID("boss1"):sub(6,10), 16)
        if npcID == 62511 then --Amber Shaper
            local reshapeLife = UnitDebuffID("player", 122370)
            
            if reshapeLife then
                --Player is mind controlled.
                local playerCasting = UnitCastingInfo("player")
                local amberExplosion = GetSpellInfo(122402)
                local struggleForControl = GetSpellInfo(122395)
                local amberStrike = GetSpellInfo(122389)
                local breakFree = GetSpellInfo(123060)
                local playerWisdom = UnitPower("player", 10) --"Wisdom" power.
                
                if playerWisdom <= 8 then
                    RunMacroText("/cast "..breakFree)
                end
                
                if UnitExists("boss2") then
                    --62711
                    local npcID = tonumber(UnitGUID("boss2"):sub(6,10), 16)
                    if npcID == 62711 then
                        local bossCasting = UnitCastingInfo("boss2")
                        if bossCasting == amberExplosion then
                            --boss is casting.
                            RunMacroText("/cast "..amberStrike)
                        else
                            if playerCasting == amberExplosion then
                                RunMacroText("/cast "..struggleForControl)
                            end
                        end
                    end
                else
                    if playerCasting == amberExplosion then
                        RunMacroText("/cast "..struggleForControl)
                    end
                end
                
            end
        end
    end
    Specifically if: "player" works even though the player is in a vehicle.
    Does RunMacroText /cast work on the abilities.
    Can RunMacroText() be replaced with CastSpellByName

    We might need to change the "player" UnitId to "vehicle"
    Looking at the code off the bat, I see "boss2" being a problem, I know he spawns another add but are we certain that the constructs themselves don't count as bosses? since they are hostile to both the boss and players. Also, break free can only be casted when your construct is bellow 20% health, didn't see anything about wisdom having to be 8 or bellow, not sure for certain though.
    Last edited by Kinkeh; 11-06-2012 at 05:01 AM.

  6. #5691
    reapagedk's Avatar Member
    Reputation
    9
    Join Date
    Sep 2009
    Posts
    62
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kinkeh View Post
    It's left control.
    Thank you sir.

  7. #5692
    lantus's Avatar Active Member
    Reputation
    46
    Join Date
    Feb 2012
    Posts
    161
    Thanks G/R
    0/0
    Trade Feedback
    8 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cameronmc88 View Post
    Hey all I'm having trouble with PQR with a couple of profiles, when not using PQR it doesn't happen EVER. My game abilities lock up and I can't press any of them :/ It shows that I'm pressing the key because it highlights on the actionbar but doesn't actually use the bar it's like I've been silenced but not really?

    Tried deleting and disable addons, tried even new keyboard.. same problem but only PQR
    Its not a problem with the bot, its a problem with the profiles; most cases it's due to old profiles that haven't been updated, morphed spells and such.

  8. #5693
    MACH9 WoW Services's Avatar Member CoreCoins Purchaser
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    219
    Thanks G/R
    1/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @lantus Thanks for clearing that up for me mate

  9. #5694
    Aegeus's Avatar Contributor Walter White CoreCoins Purchaser
    Reputation
    134
    Join Date
    Feb 2012
    Posts
    245
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quick question, does PQR work fine with Windows 8? I can't see why it wouldn't, but thought it would be prudent to ask before I install it.

  10. #5695
    lukec2000's Avatar Member
    Reputation
    4
    Join Date
    May 2012
    Posts
    89
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does anyone know or have a link to any MOP frost dk 2h pvp? Very new to this but can't seem to find an up-to-date version

  11. #5696
    Sivers's Avatar Member
    Reputation
    2
    Join Date
    May 2008
    Posts
    62
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is anyone working on a fully-featured Mistweaver profile? I know a basic one exists already but I'm looking for a more raid-ready profile that utilizes all healing spells properly. Current one OOMs itself quickly by not utilizing the smartcast of Surging Mists correctly and not using Enveloping Mist at all.

    Even if there was a work-in-progress profile, I wouldn't mind testing for someone and providing feedback.. and of course throwing in a donation for your efforts.

    I've got a 90 Monk but sadly no coding experience of my own.

  12. #5697
    ace99ro's Avatar Sergeant Major
    Reputation
    9
    Join Date
    Dec 2011
    Posts
    173
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    looking for the same thing , a raid ready Mistweaver profile , will donate for sure

  13. #5698
    daveyboyuk's Avatar Active Member
    Reputation
    31
    Join Date
    May 2009
    Posts
    201
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Aegeus760 View Post
    Quick question, does PQR work fine with Windows 8? I can't see why it wouldn't, but thought it would be prudent to ask before I install it.
    worked for me when windows 8 was still beta

  14. #5699
    zcooler's Avatar Member
    Reputation
    1
    Join Date
    Jan 2010
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    profile hunter bm does not work on ru realm live for me.
    <PQR Debug> --Pause-- (Nova [Beast Mastery]) returned true. Executing ability.

    my fail. sorry. used some broken profile. downloaded from svn solved problem. sorry
    Last edited by zcooler; 11-06-2012 at 02:11 PM.

  15. #5700
    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 Xelper View Post
    If anyone can test this code on Amber-Shaper Unsok that would be great...It will interrupt the ability you need to interrupt when you are reshaped. It will also exit the form if <8 wisdom.

    Ability: Boss Special
    Spell ID: 0
    Code:
    --Amber Shaper
    
    
    if UnitExists("boss1") then
        local npcID = tonumber(UnitGUID("boss1"):sub(6,10), 16)
        if npcID == 62511 then --Amber Shaper
            local reshapeLife = UnitDebuffID("player", 122370)
            
            if reshapeLife then
                --Player is mind controlled.
                local playerCasting = UnitCastingInfo("player")
                local amberExplosion = GetSpellInfo(122402)
                local struggleForControl = GetSpellInfo(122395)
                local amberStrike = GetSpellInfo(122389)
                local breakFree = GetSpellInfo(123060)
                local playerWisdom = UnitPower("player", 10) --"Wisdom" power.
                
                if playerWisdom <= 8 then
                    RunMacroText("/cast "..breakFree)
                end
                
                if UnitExists("boss2") then
                    --62711
                    local npcID = tonumber(UnitGUID("boss2"):sub(6,10), 16)
                    if npcID == 62711 then
                        local bossCasting = UnitCastingInfo("boss2")
                        if bossCasting == amberExplosion then
                            --boss is casting.
                            RunMacroText("/cast "..amberStrike)
                        else
                            if playerCasting == amberExplosion then
                                RunMacroText("/cast "..struggleForControl)
                            end
                        end
                    end
                else
                    if playerCasting == amberExplosion then
                        RunMacroText("/cast "..struggleForControl)
                    end
                end
                
            end
        end
    end
    Specifically if: "player" works even though the player is in a vehicle.
    Does RunMacroText /cast work on the abilities.
    Can RunMacroText() be replaced with CastSpellByName

    We might need to change the "player" UnitId to "vehicle"
    Does this need to be in a certain place in your abilities? or in front of them all?

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 07:03 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