PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 699 of 779 FirstFirst ... 199599649695696697698699700701702703749 ... LastLast
Results 10,471 to 10,485 of 11681
  1. #10471
    Astimir's Avatar Member
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I read it! But people write that use the program and it works.

    PQR - Rotation Bot
  2. #10472
    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)
    I'm pushing the offsets shortly. I did look at some of the newer stuff added to the client, and none of it appears to affect anything PQR is using. So should be safe to use, but as always, that can change at any time and you continue to use ANY hack at your own risk.

    EDIT: Offsets are now up. You can use the Download Offsets button as long as you are on PQR v2.2.1. Otherwise use the PQRUpdater.exe.
    Last edited by Xelper; 06-15-2013 at 08:51 AM.

  3. #10473
    Wonderworm's Avatar Sergeant
    Reputation
    26
    Join Date
    Jul 2012
    Posts
    51
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks Xelper and as always appreciate PQR and all your support.

    Keep up the great work

  4. #10474
    Neyia's Avatar Active Member Ultimate Rogue PVE CoreCoins Purchaser
    Reputation
    41
    Join Date
    Nov 2012
    Posts
    335
    Thanks G/R
    1/3
    Trade Feedback
    5 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    To control if our player is behind the target is

    Code:
    if not PQR_UnitFacing("target", "player") then
    or

    Code:
    if PQR_UnitFacing("target", "player") then
    ? Because i update a Subtlety profile and the profile doesn't detect if our player is behind the target, so he tries to spam Backstab when you're not behind the target

    The actual Backstab code:

    Code:
    -- Backstab if behind Target
    if not PQR_UnitFacing("target", "player") and not IsStealthed() then
    	if not ( UnitBuffID("player", 51713) or UnitBuffID("player", 1856) ) then
    		CastSpellByName(GetSpellInfo(53), "target")
    	end
    end
    The actual Hemorrhage Front code:
    Code:
    -- Hemorrhage if in front of Target
    if PQR_UnitFacing("target", "player") and not IsStealthed() then
    	CastSpellByName(GetSpellInfo(16511), "target")
    end
    Thanks
    Last edited by Neyia; 06-15-2013 at 10:11 AM.

  5. #10475
    JUANNY's Avatar Master Sergeant
    Reputation
    21
    Join Date
    May 2013
    Posts
    136
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hey guys if anyone can help me i would apprecciate it-ive been trying to program my profile to automaticlly cast a battle rez (raise ally) if there are any deaths in the raid without me having to do anything-got some of thi9 code from another profile but it doesnt seem to work

    local members = GetNumGroupMembers() - 1
    local group = ""
    if IsInRaid then
    group = "raid"
    else
    group = "party"
    end

    if IsSpellKnown(61999) then
    for i=1, members, 1 do
    local member = group..tostring(i)
    if UnitIsCorpse(member)
    and not PQR_IsOutOfSight(member)
    and IsSpellInRange(GetSpellInfo(61999), member) == 1
    and UnitAffectingCombat("player")
    then PQR_CustomTarget = member
    return true
    end
    end
    end

    i have the chunk window setting on the left with custom for target and 61999 for the id on the casted spell with a recast delay of 100-any idea of where im going wrong. Also is there a link of all the functions and commands that i can use with PQR to execute and program a profile something like a PQR API THX

  6. #10476
    dklcfr's Avatar Master Sergeant
    Reputation
    26
    Join Date
    Aug 2010
    Posts
    127
    Thanks G/R
    3/4
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by g4cash View Post
    Sorry for asking this but i just can't figure it out...

    What does the PQR stands for?
    iirc it's Priority Queue Rotation

  7. #10477
    trinchen's Avatar Corporal
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    TY XELPER!!!!!! and to TY all the other guys who posted working offsets after the ninja patch ........

  8. #10478
    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)
    Originally Posted by g4cash View Post
    Sorry for asking this but i just can't figure it out...

    What does the PQR stands for?
    Fun history time! Someone posted it before me, but Priority Queue Rotation. Its not very clever. About 3-4 years ago there was a WoW Addon called Priority Queue. I didn't write it, I just found it when searching for an addon to help me with my rotation. It allows you to create abilities in Lua, then simply displayed an icon of what button you should press next. The actual way abilities were written for the addon was almost exactly like PQR is now. I rewrote that addon to display a 1x1 pixel at the top left corner of the screen that changed colors based on what ability needed to be cast next. I then wrote a program that simply read the color of that pixel and hit the appropriate button automatically. No actual hacking was done at this point.

    I already knew how to program, but knew nothing of memory editing. After about a month of headaches I was finally able to throw together a radar for WoW that allows you to track objects by name/type and rendered it in the same way you would see the ingame radar. Eventually I started looking at DX9 EndScene hooking for executing Lua, and from there that allowed me to start reading the value of a Lua variable and hitting the appropriate key with a key press instead of doing pixel scanning. Eventually just over 2 years ago I decided I was getting sick of binding keys to abilities and wrote PQR, it started off fairly hardcoded for each rotation, then I started adding in profiles and other features to make writing new rotations easier, and after 2 years here we are. I think I actually released PQR on OwnedCore (which was then MMOwned) around July 3rd of 2011.
    Last edited by Xelper; 06-15-2013 at 12:32 PM.

  9. #10479
    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)
    And I've been here ever since that first beta release pqr on the old thread

    Please if someone helped you donate rep to them.

  10. #10480
    jh16's Avatar Contributor
    Reputation
    323
    Join Date
    Feb 2012
    Posts
    321
    Thanks G/R
    10/46
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Xelper, thank you for your work and time you put into making PQR and keeping it working.

    I also want to thank all the profile coders out there that spend their time making such awesome profiles for the community.

    WoW has gotten to a point where it is hard to keep up with multiple 90s (through the constant repetition). PQR makes my week much easier to get through.
    After playing my main since vanilla my fingers aren't as nimble as they used to be. Also prevents my hands from cramping up.

    Thanks again!

  11. #10481
    travis2861's Avatar Contributor
    Reputation
    99
    Join Date
    Aug 2007
    Posts
    227
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've had the thread open since it's inception, I've loved watching this program and some of the profiles grow into what they are today!
    (Also the amount of offsets I have is staggering >.<)

  12. #10482
    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)
    Originally Posted by travis2861 View Post
    I've had the thread open since it's inception, I've loved watching this program and some of the profiles grow into what they are today!
    (Also the amount of offsets I have is staggering >.<)
    Oh you think YOU have a lot of offsets!
    Attachment 14457
    and thats only since PQR 2.0 came out! :P

    EDIT: BTW: I uploaded a new version of PQR v2.2.2. Note there are no changes at all at this time to any functionality, I just added a donate button to the Select Process form with a fairly short message. Sorry it made the form a little bigger.
    Last edited by Xelper; 06-15-2013 at 04:59 PM.

  13. #10483
    Kinky's Avatar Banned CoreCoins Purchaser
    Reputation
    481
    Join Date
    Nov 2008
    Posts
    500
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah.. PQR has had a long run, and it's still going strong and fully active. I think I joined around that time as well, some time right before Firelands was released. =) Then actively started creating profiles when Firelands was released since I had to change from Holy to Shadow and I knew nothing about playing Shadow at that point. (lol)

    Keep it up Xelper!

  14. #10484
    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)
    Originally Posted by Xelper View Post
    Oh you think YOU have a lot of offsets!
    Attachment 14457
    and thats only since PQR 2.0 came out! :P

    EDIT: BTW: I uploaded a new version of PQR v2.2.2. Note there are no changes at all at this time to any functionality, I just added a donate button to the Select Process form with a fairly short message. Sorry it made the form a little bigger.
    You newb, you should know better than to try and post pictures here lol. Imgur FTW.

  15. #10485
    joenvidio's Avatar Sergeant
    Reputation
    6
    Join Date
    Dec 2011
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    way to go Xelper! keep up the awesome work man

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