PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 640 of 779 FirstFirst ... 140540590636637638639640641642643644690740 ... LastLast
Results 9,586 to 9,600 of 11681
  1. #9586
    kuukuu's Avatar Contributor
    Reputation
    269
    Join Date
    Jul 2012
    Posts
    619
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    local PlayerHP = 100 * UnitHealth("player") / UnitHealthMax("player")

    if PlayerHP < 30
    and GetItemCount(5512,false,false) > 0
    and ( select(2, GetItemCooldown(5512)) == 0 ) then
    UseItemByName(5512)
    return true
    end

    That's the code I use for Healthstone and it works perfectly. Maybe comparing it to yours will help you find the issue with yours?
    Former PQR Developer

    PQR - Rotation Bot
  2. #9587
    Evgenij's Avatar Private
    Reputation
    1
    Join Date
    May 2013
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Now it works. Thanks. One must specify the cooldown?

  3. #9588
    kuukuu's Avatar Contributor
    Reputation
    269
    Join Date
    Jul 2012
    Posts
    619
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Evgenij View Post
    Now it works. Thanks. One must specify the cooldown?
    I don't believe it is required but I put it in to stop the profile from spamming.
    Former PQR Developer

  4. #9589
    Evgenij's Avatar Private
    Reputation
    1
    Join Date
    May 2013
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I understand. Thanks.
    Now I know why it did not work. If no spell is an item.

    Can you please help me with Hamstring.

    I use this for player targets. It works perfectly.
    Code:
    if not UnitDebuffID("target",1715)
    then
    return true
    end
    How I can skip the Hamstring with the Bosse's and Raiders Training Dummy's? It does not work on Bosse's and Raiders Training Dummy's.
    Last edited by Evgenij; 05-11-2013 at 08:04 PM.

  5. #9590
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,033
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Evgenij View Post
    I understand. Thanks.
    Now I know why it did not work. If no spell is an item.

    Can you please help me with Hamstring.

    I use this for player targets. It works perfectly.
    Code:
    if not UnitDebuffID("target",1715)
    then
    return true
    end
    How I can skip the Hamstring with the Bosse's and Raiders Training Dummy's? It does not work on Bosse's and Raiders Training Dummy's.
    i'd look at ments data file under BossIDs and the function SpecialUnit().

    Please if someone helped you donate rep to them.

  6. #9591
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,033
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by thenthelies View Post
    So this might be going full scum-bag, but I want to start frapsing my play - but there is a problem with the fact that there is no key spam when abilities are used...

    You know when you press a key and you see it highlight before it goes off? PQR doesn't do that at all.

    Is there any possible cast function/whatever to get PQR to send the key as a normal person doing a keyboard press would do and spam the key it's using next, highlighting it on the WoW interface?
    you could try and do macros and then have pqr run the macro instead of casting the spell via CastSpellbyName api.

    create the /cast macro in game and have PQR do something like this:

    if inCombat then
    RunMacro("macroname")
    return true
    end

    no idea if it will do a click on the bar like you want, however you could get an addon like bartender and masque to skin it and remove the click appearance all together.

    Please if someone helped you donate rep to them.

  7. #9592
    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)
    Finally fixed it. Working double jeopardy code, or multi-dotting.

    PHP Code:
    local cStack select(4UnitDebuffID("focus"31803))
    local cTime select(7UnitDebuffID("focus"31803)) 
    local censure UnitDebuffID("focus"31803)

    if 
    GetShapeshiftForm() ~= 0 then hasSeal true else hasSeal false end

    if hasSeal then
        
    if UnitPower("player"9) < 5 then
            
    if UnitExists("focus") == nil or (UnitExists("focus") and cStack == and ((cTime GetTime()) > 7)) then
                CastSpellByName
    (GetSpellInfo(20271), "target")
            elseif 
    UnitExists("focus"then
                
    if censure == nil or cStack or ((cTime GetTime()) <= 7then
                    CastSpellByName
    (GetSpellInfo(20271), "focus")
                    return 
    true
                end
            end
        end
    end 
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  8. #9593
    kuukuu's Avatar Contributor
    Reputation
    269
    Join Date
    Jul 2012
    Posts
    619
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by averykey View Post
    Finally fixed it. Working double jeopardy code, or multi-dotting.

    PHP Code:
    local cStack select(4UnitDebuffID("focus"31803))
    local cTime select(7UnitDebuffID("focus"31803)) 
    local censure UnitDebuffID("focus"31803)

    if 
    GetShapeshiftForm() ~= 0 then hasSeal true else hasSeal false end

    if hasSeal then
        
    if UnitPower("player"9) < 5 then
            
    if UnitExists("focus") == nil or (UnitExists("focus") and cStack == and ((cTime GetTime()) > 7)) then
                CastSpellByName
    (GetSpellInfo(20271), "target")
            elseif 
    UnitExists("focus"then
                
    if censure == nil or cStack or ((cTime GetTime()) <= 7then
                    CastSpellByName
    (GetSpellInfo(20271), "focus")
                    return 
    true
                end
            end
        end
    end 
    Very nice Avery, bet that's a load off your mind now.
    Former PQR Developer

  9. #9594
    phasechange's Avatar Member CoreCoins Purchaser
    Reputation
    3
    Join Date
    May 2008
    Posts
    70
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have a simple question regarding the PQR ability delay and custom lag tolerance in game. Let's say my ping is 15ms, what should I have the ability delay and custom lag tolerance set to for maximizing dps?

  10. #9595
    WWF's Avatar Active Member
    Reputation
    31
    Join Date
    Jul 2010
    Posts
    215
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    who can tell me why PQR doesn't work?
    PQR 2.1.0 it's ok, 2.2.0 isn't, profiles aren't activated, it happened a week ago.

  11. #9596
    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)
    Originally Posted by jamesbay View Post
    And you are not really helpful... Was asking if anyone could recommend a really good one, not just a link to the whole subforum..
    I apologize, I thought I put the link to Nerder's profile in my link. Sorry about that!

  12. #9597
    paintpauller's Avatar Contributor
    Reputation
    128
    Join Date
    Jan 2012
    Posts
    265
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone know how to check against the 2nd line in a data file?
    want to be able to version check PQR_PQI.lua with out editing it :confused:
    PHP Code:
    -- PQR_PQI.lua
    -- V2.22
    -- ~~| Ini |~~~~~~~~~

    exc.... 
    that second line i would need to get into a string so i can strip out the "-- V" and then check against the number to ensure that its up-to-date

    I should be able to do all that just dont know how to put that 2nd line into a variable so i can work with it, any ideas?

    Alpha Profiles: - All profiles with PQInterface support!
    Alpha Interrupt: https://goo.gl/OLhGi - Ignore List, Random Percentage, Time Delays, & much More!
    Alpha Utilities: https://goo.gl/rt7WA - Farming, Prospecting, Disenchanting, Milling, & Questing
    Alpha Moonkin: https://goo.gl/gjxw0 - Optimized DPS Rotation for PvE, Mashup of 3 Profiles
    Avery's Ret: https://goo.gl/GhurM - My take on Avery's outstanding Ret profile with PQI

  13. #9598
    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 paintpauller View Post
    anyone know how to check against the 2nd line in a data file?
    want to be able to version check PQR_PQI.lua with out editing it :confused:
    PHP Code:
    -- PQR_PQI.lua
    -- V2.22
    -- ~~| Ini |~~~~~~~~~

    exc.... 
    that second line i would need to get into a string so i can strip out the "-- V" and then check against the number to ensure that its up-to-date

    I should be able to do all that just dont know how to put that 2nd line into a variable so i can work with it, any ideas?
    Maybe use CVars?
    [Php]if not dataloaded then
    SetCVar('PQI_Version', 2.22)

    dataloaded = true
    end[php]

    Then call it with this:
    [php] if GetCVar('PQI_Version') == 2.22 then
    do this
    end[php]

    Would be best to see if Deisal would include this so that everyone's data file could be the same.
    Sent from my Nexus 7 using Tapatalk 2
    Last edited by firepong; 05-12-2013 at 05:24 AM.

  14. #9599
    Evgenij's Avatar Private
    Reputation
    1
    Join Date
    May 2013
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    i'd look at ments data file under BossIDs and the function SpecialUnit().
    I test it thank you.

  15. #9600
    paintpauller's Avatar Contributor
    Reputation
    128
    Join Date
    Jan 2012
    Posts
    265
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    Maybe use CVars?
    [Php]if not dataloaded then
    SetCVar('PQI_Version', 2.22)

    dataloaded = true
    end[php]

    Then call it with this:
    [php] if GetCVar('PQI_Version') == 2.22 then
    do this
    end[php]

    Would be best to see if Deisal would include this so that everyone's data file could be the same.
    Sent from my Nexus 7 using Tapatalk 2
    thats an idea but was trying to stay away from having to distribute a edited version of PQR_PQI.lua and let them use the one provided by Deisal.

    correct me if i'm wrong because i have never used a Data file for any of my profiles but if i was to edit the file could i not just make a global variable PQR_PQI_Data = 2.22 then check for it in my profile?

    i was hoping there was a way to say variable = second line of this data file
    and then just turn that into a number and check against that

    don't know if i really want to force ppl to get a separate data file just so i can make sure that they updated the data file along with the addon, already have version checks on the addon working.
    tho it might solve some of the problems that come with the older versions of PQR_PQI.lua

    Alpha Profiles: - All profiles with PQInterface support!
    Alpha Interrupt: https://goo.gl/OLhGi - Ignore List, Random Percentage, Time Delays, & much More!
    Alpha Utilities: https://goo.gl/rt7WA - Farming, Prospecting, Disenchanting, Milling, & Questing
    Alpha Moonkin: https://goo.gl/gjxw0 - Optimized DPS Rotation for PvE, Mashup of 3 Profiles
    Avery's Ret: https://goo.gl/GhurM - My take on Avery's outstanding Ret profile with PQI

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 05:42 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