PQR - Rotation Bot menu

User Tag List

Page 362 of 779 FirstFirst ... 262312358359360361362363364365366412462 ... LastLast
Results 5,416 to 5,430 of 11681
  1. #5416
    Gabbz's Avatar Contributor
    Reputation
    184
    Join Date
    Dec 2011
    Posts
    451
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone know if there is a issue with Ability Delay?

    As a affliction lock i need to refresh my dots using Soulburn if all of my proccs is up.

    PHP Code:
    if SoulShards and SoulBurn == nil and IsValidTargetToAttack and ((GetTime() - SoulBurnTime) > 0.7then
        
    if BloodFuryBuffTimeLeft and LightWeaveBuffTimeLeft and SynapseSpringBuffTimeLeft and DarkSoulTimeLeft 0 then
            
    if Trin****neBuffTimeLeft or DarkMoonBuffTimeLeft 0 then --or PotionBuffTimeLeft 0
                CastSpellByName
    (GetSpellInfo(74434))
                return 
    true
            end
        end
    end 
    I can see all buff is up and hten at the end i am refreshing them. Delay is set to 10 seconds since then i know i will only hit it once.
    So it seems that it is triggered at start wothout being able to cast the ability but the delays is triggered.
    Looking for exploiters and botters to Elder Scrolls Online.

    PQR - Rotation Bot
  2. #5417
    zuluntif's Avatar Private
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by impulse1992 View Post
    Go to Control panel > Appearance and Personalization > Under display: make text or other items larger or smaller <-- Select that. Choose Smallest.

    Thats what i was told and worked zuluntif
    yea but the thing is u did something with manual download`?
    i did what u said and still same bug

  3. #5418
    googlebee's Avatar Contributor PQR Profile Developer CoreCoins Purchaser
    Reputation
    235
    Join Date
    Oct 2007
    Posts
    478
    Thanks G/R
    0/0
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by zuluntif View Post
    yea but the thing is u did something with manual download`?
    i did what u said and still same bug
    wut? What does manual download have to do with anything. You're talking about 2 different things. try being more specific with your issue.

  4. #5419
    googlebee's Avatar Contributor PQR Profile Developer CoreCoins Purchaser
    Reputation
    235
    Join Date
    Oct 2007
    Posts
    478
    Thanks G/R
    0/0
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Mpzor View Post
    Which profile is the best one for a ret paladin?
    depends what u want - try them out and you be the judge.

    Xelper has an updated one and is the designer of PQR.....usually thats a good thing.

    Avery has put alot of time into his, so perhaps that one you may like too.

    That's like asking someone what flavor ice cream they like =p

  5. #5420
    googlebee's Avatar Contributor PQR Profile Developer CoreCoins Purchaser
    Reputation
    235
    Join Date
    Oct 2007
    Posts
    478
    Thanks G/R
    0/0
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    PM'd Bu_Ba but in case hes not around....anyone that can help with this I would greatly appreciate as Im pulling my hair out and about to go bald.

    checking for debuff on target (Thrash) and if it is not present, applying thrash. If it is present, return false.

    Code:
    local PQ_Debuff, _, _, count = UnitDebuffID("target", 77758)
    
    if PQ_Debuff then
      if count <= 0 or count == nil then
        if ThrashCooldownTimeLeft == 0 then
        CastSpellByName(tostring(GetSpellInfo(77758)))
      return true
    elseif count == 1 then
      return false
    end
    Please help. I'm baffled.

  6. #5421
    ishtro's Avatar Master Sergeant
    Reputation
    36
    Join Date
    Jul 2010
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by googlebee View Post
    PM'd Bu_Ba but in case hes not around....anyone that can help with this I would greatly appreciate as Im pulling my hair out and about to go bald.

    checking for debuff on target (Thrash) and if it is not present, applying thrash. If it is present, return false.

    Code:
    local PQ_Debuff, _, _, count = UnitDebuffID("target", 77758)
    
    if PQ_Debuff then
      if count <= 0 or count == nil then
        if ThrashCooldownTimeLeft == 0 then
        CastSpellByName(tostring(GetSpellInfo(77758)))
      return true
    elseif count == 1 then
      return false
    end
    Please help. I'm baffled.
    try this
    PHP Code:
     if UnitDebuffID("target"77758) == nil and ( select(2GetSpellCooldown(77758)) == then
        CastSpellByName
    (GetSpellInfo(77758))
        return 
    true
    end 

  7. #5422
    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 googlebee View Post
    PM'd Bu_Ba but in case hes not around....anyone that can help with this I would greatly appreciate as Im pulling my hair out and about to go bald.

    checking for debuff on target (Thrash) and if it is not present, applying thrash. If it is present, return false.

    Code:
    local PQ_Debuff, _, _, count = UnitDebuffID("target", 77758)
    
    if PQ_Debuff then
      if count <= 0 or count == nil then
        if ThrashCooldownTimeLeft == 0 then
        CastSpellByName(tostring(GetSpellInfo(77758)))
      return true
    elseif count == 1 then
      return false
    end
    Please help. I'm baffled.
    Single Target or Multi Target? And this is for Bear right? If you want, take whatever you can from mine and change it around to meet your needs. All the 3 of variables there are my own making, so you might have to change more around than meets the needs

    This one is my single target that also checks to see if you have ClearCasting for the free Thrash. If not there, then return false and never think about it again
    PHP Code:
    //Variables
    local HasGlyph HasGlyph(127540)
    local HasSR select(2,HasSR("Player"))
    local HasThrash HasThrash("Target","Player")
        
    if 
    HasGlyph then
        
    if HasThrash then
            CastSpellByName
    (tostring(GetSpellInfo(106830)))
        
    end
    elseif not HasGlyph then
        
    if HasThrash then
            CastSpellByName
    (tostring(GetSpellInfo(106830)))
        
    end
    end 
    with my custom made function for Thrash being:
    PHP Code:
    function HasThrash(var1,var2)
        
    local CCasting UnitBuffID(var2,16870)
        
    local tBuff UnitDebuffID(var1106830,var2)
            
        if 
    CCasting and not tBuff then
            
    return true
        
    elseif CCasting and tBuff then
            local tTimer 
    select(7,UnitDebuffID(var1106830,var2))
            
    local Timer = (tTimer GetTime())

            return 
    true,Timer
        
    elseif not CCasting and tBuff then
            local tTimer 
    select(7,UnitDebuffID(var1106830,var2))
            
    local Timer = (tTimer GetTime())
            
            return 
    false,Timer
        end
        
    return false
    end 
    Here's my flat Multi Target with none of the above in it pretty much but a check to see if you have Savage Roar, which can easily be removed from the code (HasSR is also one of my custom function's)
    PHP Code:
    local hasTarget UnitExists("Target")
    local Enemy UnitCanAttack("Player","Target")
    local isDead UnitIsDead("Target")
    local inCombat UnitAffectingCombat("Player") or UnitAffectingCombat("Target")

    if 
    hasTarget and Enemy and not isDead and inCombat then
        
    //Variables
        
    local HasGlyph HasGlyph(127540)
        
    local HasSR select(2,HasSR("Player"))
        
    //Misc Buff's/Debuff's/CD's
        
    local thrashBleed UnitDebuffID("Target",106830)
        
        if 
    HasGlyph then
            
    if not thrashBleed and HasSR then
                CastSpellByName
    (tostring(GetSpellInfo(106830)))
            
    end
        
    elseif not HasGlyph then
            
    if not thrashBleed then
                CastSpellByName
    (tostring(GetSpellInfo(106830)))
            
    end
        end
    end 
    P.S. Just have to check and make sure that the Thrash Debuff on the target is indeed yours, which is why the "PLAYER" tag is included in my custom function. This is just in case another druid is in your group and Thrash has the same spellID.
    Last edited by firepong; 10-28-2012 at 05:34 PM.

  8. #5423
    googlebee's Avatar Contributor PQR Profile Developer CoreCoins Purchaser
    Reputation
    235
    Join Date
    Oct 2007
    Posts
    478
    Thanks G/R
    0/0
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    Single Target or Multi Target? And this is for Bear right? If you want, take whatever you can from mine and change it around to meet your needs. All the 3 of variables there are my own making, so you might have to change more around than meets the needs

    This one is my single target that also checks to see if you have ClearCasting for the free Thrash. If not there, then return false and never think about it again
    PHP Code:
    //Variables
    local HasGlyph HasGlyph(127540)
    local HasSR select(2,HasSR("Player"))
    local HasThrash HasThrash("Target","Player")
        
    if 
    HasGlyph then
        
    if HasThrash then
            CastSpellByName
    (tostring(GetSpellInfo(106830)))
        
    end
    elseif not HasGlyph then
        
    if HasThrash then
            CastSpellByName
    (tostring(GetSpellInfo(106830)))
        
    end
    end 
    with my custom made function for Thrash being:
    PHP Code:
    function HasThrash(var1,var2)
        
    local CCasting UnitBuffID(var2,16870)
        
    local tBuff UnitDebuffID(var1106830,var2)
            
        if 
    CCasting and not tBuff then
            
    return true
        
    elseif CCasting and tBuff then
            local tTimer 
    select(7,UnitDebuffID(var1106830,var2))
            
    local Timer = (tTimer GetTime())

            return 
    true,Timer
        
    elseif not CCasting and tBuff then
            local tTimer 
    select(7,UnitDebuffID(var1106830,var2))
            
    local Timer = (tTimer GetTime())
            
            return 
    false,Timer
        end
        
    return false
    end 
    Here's my flat Multi Target with none of the above in it pretty much but a check to see if you have Savage Roar, which can easily be removed from the code (HasSR is also one of my custom function's)
    PHP Code:
    local hasTarget UnitExists("Target")
    local Enemy UnitCanAttack("Player","Target")
    local isDead UnitIsDead("Target")
    local inCombat UnitAffectingCombat("Player") or UnitAffectingCombat("Target")

    if 
    hasTarget and Enemy and not isDead and inCombat then
        
    //Variables
        
    local HasGlyph HasGlyph(127540)
        
    local HasSR select(2,HasSR("Player"))
        
    //Misc Buff's/Debuff's/CD's
        
    local thrashBleed UnitDebuffID("Target",106830)
        
        if 
    HasGlyph then
            
    if not thrashBleed and HasSR then
                CastSpellByName
    (tostring(GetSpellInfo(106830)))
            
    end
        
    elseif not HasGlyph then
            
    if not thrashBleed then
                CastSpellByName
    (tostring(GetSpellInfo(106830)))
            
    end
        end
    end 
    P.S. Just have to check and make sure that the Thrash Debuff on the target is indeed yours, which is why the "PLAYER" tag is included in my custom function. This is just in case another druid is in your group and Thrash has the same spellID.
    Thanks Firepong It is for bear tho, and actually Ishtro's solved the issue. Those are some nice checks you have in place though!

    @ Ishtro - thanks man - did the trick! + rep

  9. #5424
    derfred's Avatar Member
    Reputation
    2
    Join Date
    Oct 2007
    Posts
    82
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does anyone know a good way to run PQR on a macbook pro? Is it only viable through paralell desktop or can you use any other program?

    Secondly I just want to thank Kinkeh for his awesome DK 2-h frost PVE rotation. Were currently 4/6 HC and i ranked in every fight, and as high as top 20.

    Just a question aswell to Kinkeh, is it possible to make like a "If mushrooms with symbiosis is up, use plague leech"?

  10. #5425
    cukiemunster's Avatar Contributor
    Reputation
    132
    Join Date
    Dec 2009
    Posts
    1,129
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does anyone know if it is possible to automate PQR launch and profile selection with HB launches? I currently use HBrelog to automate my farm toon, however, the HB combat routines are terrible. So if anyone has a way to do this I would GREATLY appreciate it.

  11. #5426
    Sovietbobcat's Avatar Corporal
    Reputation
    1
    Join Date
    May 2012
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Shayden85 View Post
    Anyone know of a good warrior tank profile ?
    On the First Page..

    Originally Posted by sheuron View Post
    ... Sheuron PQR Profiles ...

    Guide to PQR's FIRST TIMER USERS
    1. Download and use PQR Updater http://www.mediafire.com/?ogv9dp13dzto1s5
    2. Download a profile pack for your WoW version
    3. Extract DATA and PROFILES folders inside PQR folder
    4. Start WoW and load your character
    5. Start PQR, you will see you char name, click Select button.

    PQR will not work and only show "Edit mode" if the program is outdated or your using unsupported WoW version.

    This people made possible the work on all profiles by donating a small amount of money. If the profile help you in any way take in consideration make a donation on my paypal account.
    DONATORS: Charles D, Egemen A, Jaime A, Gerard K, SayShea W, Hot Rod H. Avatar I.

    Mage PVE (Fire,Arcane, Frost) Warrior PVE (Protection, Fury)
    Monk Leveling (1-10), PVE (Windwalker) Priest PVE (Holy)
    Hunter PVE (BM) Death Knight PVE (Unholy)
    Druid PVE (Resto, Feral) Rogue PVE (Combat)
    Shaman PVE (Resto)


    Underlined spec mean raid quality profile. Others are developement profiles.

    WoW 5 Mist of Pandaria > http://goo.gl/9Iy6F

    WoW 4.3.x (private servers) > http://goo.gl/rseZ0

    -- Developing your own profile --
    This script will help you find spells ids you need to develop your own profile. Use on game chat, not inside PQR.
    Code:
    /run for i=1,200000 do local f=FindSpellBookSlotBySpellID(i,"spell") if f then local n,id=GetSpellBookItemName(f,"spell"),select(2,GetSpellBookItemInfo(f,"spell")) local s=GetSpellInfo(id) s=n==s and " " or "\124cFF4FF763"..s print(id,n,s) end end

  12. #5427
    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 cukiemunster View Post
    Does anyone know if it is possible to automate PQR launch and profile selection with HB launches? I currently use HBrelog to automate my farm toon, however, the HB combat routines are terrible. So if anyone has a way to do this I would GREATLY appreciate it.
    Truthfully, the best way possible that I can think of would for Xelper to implement a Auto-Start Check Box in the setting's for a certain rotation. Like Check Box then select given Rotation (1 through 4) to start-up after logging into given character. I don't know how hard or easy this would be to do, but given he has already setup a way to auto login to the game from opening the Window itself and all, shouldn't be hard. Most of it should just be getting the visuals of the program done then linking the code to the right spot (from my thinking ). Will never know until he actually says something about it. I know he's probably as busy if not more than me right now. I haven't been able to login to WoW in over 3 weeks and haven't even played my subscription fee this month. With the amount of time I've been gone, I can probably guarantee myself I could quit right now and not have any withdrawal's from it lol

  13. #5428
    sgdevoid's Avatar Sergeant
    Reputation
    2
    Join Date
    Jan 2012
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by gex00 View Post
    There seems to be a lack of PvP Monk profile, willing to donate if someone can manage to do so
    I'd be willing to donate $50 to anyone who can do the above mentioned.

  14. #5429
    Discipline's Avatar Contributor ALADEEN MOTHERFUCKER! CoreCoins Purchaser
    Reputation
    128
    Join Date
    Dec 2007
    Posts
    253
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there a way to add delay to a spell that is off the GCD and instant? (DK, Blood Tap).
    I need to only cast it once.

  15. #5430
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by D1sc1pl1n3 View Post
    Is there a way to add delay to a spell that is off the GCD and instant? (DK, Blood Tap).
    I need to only cast it once.
    use the action box and tie it to another spell.

    Please if someone helped you donate rep to them.

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 04:40 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