PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 568 of 779 FirstFirst ... 68468518564565566567568569570571572618668 ... LastLast
Results 8,506 to 8,520 of 11681
  1. #8506
    ozmodiar's Avatar Member
    Reputation
    13
    Join Date
    Oct 2012
    Posts
    41
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by averykey View Post
    New commit, added kill move for ret/better wog handling. Changed a bunch of stuff in holy, should work better, having issues with divine plea, someone know why. Maybe take a look?


    edit: divine plea code

    PHP Code:
    for i=1#members do
    if (100 UnitPower("player") / UnitPowerMax("player")) <= 75 and members[i].HP >= 50 then
            
    if IsPlayerSpell(118730) and PQR_SpellAvailable(118730then
                StopAttack
    ()
                
    SpellStopCasting()
                
    CastSpellByName(GetSpellInfo(118730), "player")
            elseif 
    IsPlayerSpell(53328) and PQR_SpellAvailable(53328then
                StopAttack
    ()
                
    SpellStopCasting()
                
    CastSpellByName(GetSpellInfo(53328), "player")
            
    end
        end
    end 
    Not sure why it isn't working. Added the stops because mana is more important if the raid is safe.
    53328 is Land Flying Machine Credit - Spell - World of Warcraft

    Is that.. helpful?

    PQR - Rotation Bot
  2. #8507
    megabbyte's Avatar Member CoreCoins Purchaser
    Reputation
    4
    Join Date
    Mar 2008
    Posts
    154
    Thanks G/R
    0/2
    Trade Feedback
    10 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Who have good xml to paladin holy and retri? pvp.. pve.. both.. tks a lot..

  3. #8508
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    put out commit for divine plea, should be fixed, for some reason the action bar id and the spell book id is different?!?

    repped you ozmo, thank you for the help!

    Originally Posted by megabbyte View Post
    Who have good xml to paladin holy and retri? pvp.. pve.. both.. tks a lot..

    my svn
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  4. #8509
    donut87's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    29
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wondering if someone could help me out, trying to add Shadowburn (17877) to my rotation if the target is a boss and under 20% HP and i have 3 or more burning embers.
    This is my first time trying to write something so go easy on me!

  5. #8510
    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 donut87 View Post
    Wondering if someone could help me out, trying to add Shadowburn (17877) to my rotation if the target is a boss and under 20% HP and i have 3 or more burning embers.
    This is my first time trying to write something so go easy on me!
    PHP Code:
    local TargetHealth UnitHealth("target") / UnitHealthMax("target") * 100 -- "Function" to check the targets health.
    local Embers UnitPower(PQ_player14) -- "Function" to check how many embers we have.

    if 
    TargetHealth <= 20 and Embers >= 3 then
       CastSpellByName
    (GetSpellInfo(17877),"target")
       return 
    true
    end 

  6. #8511
    Aleksonfire's Avatar Master Sergeant
    Reputation
    25
    Join Date
    Nov 2012
    Posts
    132
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey xelper... Just wondering. I've noticed a lot of posts and personal experience on abilities trying to cast before they are off cd causing the profiles to pause until they come off cd. did you change anything with PQR_SpellAvailable or change the default on PQR_SpellAvailableTime?
    Resto Shammy Profile - https://goo.gl/nm5Nc

  7. #8512
    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)
    It is possible that the spell ID that I had chosen for each class to measure GCD (typically: a spell with no cooldown besides GCD) might have changed for some classes. These IDs haven't been changed in a long while:

    If you see any that aren't correct, or are outdated, let me know:

    Code:
        function PQR_GCDSpellID()
            local _, playerClass = UnitClass("player")
    
    
            if playerClass == "DEATHKNIGHT" then
                return 52375
            elseif playerClass == "DRUID" then
                return 774
            elseif playerClass == "HUNTER" then
                return 56641
            elseif playerClass == "MAGE" then
                return 1459
            elseif playerClass == "PALADIN" then
                return 85256
            elseif playerClass == "PRIEST" then
                return 2050
            elseif playerClass == "ROGUE" then
                return 1752
            elseif playerClass == "SHAMAN" then
                return 45284
            elseif playerClass == "WARLOCK" then
                return 980
            elseif playerClass == "WARRIOR" then
                return 1715
            elseif playerClass == "MONK" then
                return 100780
            else
                return 0
            end 
        end

  8. #8513
    Aleksonfire's Avatar Master Sergeant
    Reputation
    25
    Join Date
    Nov 2012
    Posts
    132
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    It is possible that the spell ID that I had chosen for each class to measure GCD (typically: a spell with no cooldown besides GCD) might have changed for some classes. These IDs haven't been changed in a long while:

    If you see any that aren't correct, or are outdated, let me know:

    Code:
        function PQR_GCDSpellID()
            local _, playerClass = UnitClass("player")
    
    
            if playerClass == "DEATHKNIGHT" then
                return 52375
            elseif playerClass == "DRUID" then
                return 774
            elseif playerClass == "HUNTER" then
                return 56641
            elseif playerClass == "MAGE" then
                return 1459
            elseif playerClass == "PALADIN" then
                return 85256
            elseif playerClass == "PRIEST" then
                return 2050
            elseif playerClass == "ROGUE" then
                return 1752
            elseif playerClass == "SHAMAN" then
                return 45284
            elseif playerClass == "WARLOCK" then
                return 980
            elseif playerClass == "WARRIOR" then
                return 1715
            elseif playerClass == "MONK" then
                return 100780
            else
                return 0
            end 
        end
    DK = Still valid though older version?
    Druid = Still Valid
    Hunter = Still Valid
    Mage = Still Valid
    Pally = Still Valid
    Priest = Still Valid
    Rogue = Still Valid
    Shaman = 403 for lightning bolt now
    Warlock = Still Valid
    Warrior = Still Valid
    Monk = Still valid
    Last edited by Aleksonfire; 03-14-2013 at 10:43 AM.
    Resto Shammy Profile - https://goo.gl/nm5Nc

  9. #8514
    turtlemans's Avatar Member
    Reputation
    1
    Join Date
    Jan 2013
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The DK one is outdated. It is a very old version of death coil, the newer one seems to be 47541.

  10. #8515
    manw's Avatar Banned
    Reputation
    8
    Join Date
    Nov 2008
    Posts
    130
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Xelper :

    i'm experiencing an issue with the auto interrupt as a warlock.

    I'm using the kick from my pet. My interrupt percent is set to "15" and the range kick of my pet is "40" yards.
    Alright, if my pet is in range for the kick, it will interrupt perfectly.

    Now imagine i'm in arena and there is a shaman casting a heal at 100 yards, as soon as he will start casting, my pet will go for him but he wouldn't have time to kick the shaman on cast, that's logic because the shaman was too far and the kick range is only 40 yards. The problem is that the pet will kick the shaman after he did the cast anyway ...

    Is it possible to configure the interrupt hack to make it kick ONLY AND ONLY if there is a cast available to avoid those kind of problems ?

    Will really appreciate if someone can help me there !

  11. #8516
    darkkinght's Avatar Active Member
    Reputation
    19
    Join Date
    Apr 2011
    Posts
    178
    Thanks G/R
    8/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hay Xelper I was running pqr on 64bit but there was some down time today on the realms after that I can only run it in 32 bit. I did not get any updates for wow so it was not a patch. Do you know what is up with pqr and why it would be doing this?

  12. #8517
    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)
    PQR does not work on 64 bit, never has.

  13. #8518
    Budoy's Avatar Sergeant
    Reputation
    13
    Join Date
    Dec 2011
    Posts
    67
    Thanks G/R
    0/2
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    cancel this
    Last edited by Budoy; 03-14-2013 at 12:41 PM.

  14. #8519
    expunge's Avatar Knight-Lieutenant
    Reputation
    17
    Join Date
    Nov 2011
    Posts
    226
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Leave it to Blizzard to patch everybody's game dead. Anyone else getting the 112 error after the patch?

  15. #8520
    TheDefile's Avatar Active Member
    CoreCoins Purchaser
    Reputation
    26
    Join Date
    Jan 2010
    Posts
    176
    Thanks G/R
    3/3
    Trade Feedback
    5 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    New Patch released.
    New Version: 16701

    Gonna need a new offesets update!

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:38 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