PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 760 of 779 FirstFirst ... 260660710756757758759760761762763764 ... LastLast
Results 11,386 to 11,400 of 11681
  1. #11386
    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)
    Our savior has returned! Good luck with the degree and new job!

    PQR - Rotation Bot
  2. #11387
    lethacark5's Avatar Private
    Reputation
    1
    Join Date
    Sep 2013
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    We both been pretty satisfied

  3. #11388
    Nixo's Avatar Sergeant OldSchool CoreCoins Purchaser
    Reputation
    11
    Join Date
    Mar 2013
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    11 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    Hi All! I haven't forgotten you. I pushed out the current PTR offsets on the updater. To launch PTR in 32 bit mode you likely need to rename wow-64.exe and add .bak. Sorry I haven't been around lately, I have a new job and have returned to college to pursue a degree.

    Don't worry about PQR not getting updated, I am still here.
    Legendary man is back

  4. #11389
    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)
    Originally Posted by Xelper View Post
    Hi All! I haven't forgotten you. I pushed out the current PTR offsets on the updater. To launch PTR in 32 bit mode you likely need to rename wow-64.exe and add .bak. Sorry I haven't been around lately, I have a new job and have returned to college to pursue a degree.

    Don't worry about PQR not getting updated, I am still here.
    Good news! Thanks, offsets works, no crashes, and now I can update profiles for 5.4 simpler.
    But I have a question: i noticed a difference in the three addresses for CVarBaseMgr, ObjMgr and LocalGUID, and a new one lntObjMgrGetActivePlayerObjAddress - how to find them?
    And can you make the language support? (PQR - Rotation Bot) Use UTF8 or idk...
    Last edited by WWF; 09-02-2013 at 05:46 AM.

  5. #11390
    vitalic's Avatar Contributor CoreCoins Purchaser
    Reputation
    182
    Join Date
    Jun 2010
    Posts
    3,527
    Thanks G/R
    8/3
    Trade Feedback
    10 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    if it works for you and not for them, then it's something on their end you need to figure out >.>

    are you 100% sure they haven't accidentally changed something in there?
    Found the issue, another profile author seems to be including a modified version of PQR_PQI.lua which breaks basic functionality of PQInterface

  6. #11391
    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 WWF View Post
    Good news! Thanks, offsets works, no crashes, and now I can update profiles for 5.4 simpler.
    But I have a question: i noticed a difference in the three addresses for CVarBaseMgr, ObjMgr and LocalGUID, and a new one lntObjMgrGetActivePlayerObjAddress - how to find them?
    And can you make the language support? (PQR - Rotation Bot) Use UTF8 or idk...
    I will look into what encoding is being used for the download stuff.

    The ClntObjMgrGetActivePlayerObjAddress is normally determined by a pattern when WoW is launched, but the pattern stopped working. I have kind of 'override' XML keys, as you noticed, that allow me to override patterns from the XML so I don't need to distribute a brand new version. This pattern is the reason why even if you updated the offsets yourself you were seeing crashes.

    Anyway... I kind of keep these notes on how to find some of the more difficult offsets using IDA. Sorry if they don't make sense. I mainly use either generate strings or search sequence of bytes:

    Code:
    Lua_DoStringAddress (AKA FrameScript_ExecuteBuffer):
    Pattern: 55 8B EC 51 FF ?? ?? ?? ?? ?? A1 ?? ?? ?? ?? 53 56 57
    
    
    Lua_GetLocalizedText (AKA FrameScript__GetLocalizedText): 
    Pattern: 55 8B EC 56 8B F1 E8 ?? ?? ?? ?? 84 C0 74 ?? 8B ?? ?? ?? ?? ?? 0F
    
    
    GameState:
    Go to function (use SHIFT+F12 to generate strings) : PlaySound, follow xref to Script_PlaySound
    The 4th jump includes: mov     esi, offset aNone ; "None
    Above that jump, there is a :
    cmp byte_114D3FE, bl
    The indicated byte is the GameState.
    
    
    CVarBaseMgr:
    Search pattern: 55 8B EC 83 7D 08 00 74 1C
    Should find a single result, around beggining of file (within 0x100000)
    Inside that function you will see:
    FF 75 08                push    [ebp+arg_0]     ; char *
    B9 B0 3A B2 00          mov     ecx, offset CVarBaseMgr
    The indicated offset is the offset you want.
    
    
    
    
    ObjMgr:
    Search for 55 8B EC 56 57 8B 7D 08 57 FF 35 ?? ?? ?? ?? 33
    In the last part of the function you will see this:
    The ObjMgr below is the offset you want. The 0x462C  is the CurMgr offset.
    8B 0D 00 CB E3 00       mov     ecx, ObjMgr
    D9 EE                   fldz
    89 81 2C 46 00 00       mov     [ecx+462Ch], eax
    8B 0D 00 CB E3 00       mov     ecx, ObjMgr
    89 88 F0 00 00 00       mov     [eax+0F0h], ecx
    
    
    ClntObjMgrGetActivePlayerObj:
    Search for E8 ?? ?? ?? ??68 ?? 00 00 00 68 ?? ?? ?? ?? 6A 10
    First function returned should be desired function.
    EDIT: WWF, I am PMing you a beta build of PQR (2.2.3)... I set it to use the UTF8 encoding when downloading files. Let me know if it fixes your problem, and if so I will release it.
    Last edited by Xelper; 09-02-2013 at 08:50 AM.

  7. #11392
    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)
    Yo Xelper the community is happy to see you back-part of me was scared that 5.4 would hit with PQR broken by blizz changing things-while the PQR was broken in the PTR I was forced to use another bot that was inferior and had tons of lag between casts-welcome back

  8. #11393
    muffin man's Avatar Member
    Reputation
    14
    Join Date
    Jun 2009
    Posts
    81
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    offsets for ptr 17345


    <?xml version="1.0" encoding="UTF-8"?>
    <Offsets>
    <CurrentWoWVersion>17345</CurrentWoWVersion>
    <WoWVersionOffset>0xC6652F</WoWVersionOffset>
    <PlayerName>0xEABE58</PlayerName>
    <PlayerClass>0xEABFD5</PlayerClass>
    <GetCurrentKeyBoardFocus>0xB9DC5C</GetCurrentKeyBoardFocus>
    <GameState>0xD4D3FE</GameState>
    <Lua_DoStringAddress>0x5073E</Lua_DoStringAddress>
    <Lua_GetLocalizedTextAddress>0x40D186</Lua_GetLocalizedTextAddress>
    <CVarBaseMgr>0xB91188</CVarBaseMgr>
    <CVarArraySize>0x400</CVarArraySize>
    <ObjMgr>0xEABE18</ObjMgr>
    <CurMgr>0x462C</CurMgr>
    <ClntObjMgrGetActivePlayerObjAddress>0x4DE0</ClntObjMgrGetActivePlayerObjAddress>
    <LocalGUID>0xE0</LocalGUID>
    <FirstObject>0xCC</FirstObject>
    <NextObject>0x34</NextObject>
    <Descriptors>0x4</Descriptors>
    <Obj_TypeOffset>0xC</Obj_TypeOffset>
    <Obj_X>0x830</Obj_X>
    <Obj_TargetGUID>0x28</Obj_TargetGUID>
    <ClickTerrain>0</ClickTerrain>
    </Offsets>




    i did not fine these this was shared by Dimonoff , credits go to him, im just sharing it.

  9. #11394
    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)
    lol xelper just posted the offsets so all needs doing is use PQR updater and DL offsets only

    EDIT: works great in the PTR and im back to doing my 200k dps-cant wait fo SoO raid to open up next week so i can pew pew
    Last edited by JUANNY; 09-02-2013 at 10:45 AM.

  10. #11395
    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 muffin man View Post
    offsets for ptr 17345
    i did not fine these this was shared by Dimonoff , credits go to him, im just sharing it.
    I put all of those offsets on the updater yesterday, that is where he got them. All you have to do is hit Download Offsets in PQR.

  11. #11396
    Mavmins's Avatar Contributor
    Reputation
    165
    Join Date
    Oct 2012
    Posts
    606
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Xelper, a while ago there was some mention of a way to drop AoE on a unit ? Is this ever likely to be implemented in PQR anytime ? Its not a game changer but its the only thing about PQR that I can think would make the profiles better. When someone as bad at coding as me can use PQR and make decent profiles its really nice so thx

  12. #11397
    trolledyou's Avatar Private
    Reputation
    1
    Join Date
    Sep 2013
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey guys, Im having some problem to get PQR to work... in before its about Cata 4.3.4

    Im using...
    PQR 2.0 (version 2.2.2.0)
    offset 15595
    Cata 4.3.4

    When I start PQR it finds the progress and the logged-in characters... but somehow are none of the 4.3 rotations working
    (I took them from https://www.assembla.com/code/nova-p...rofiles/PRIEST )

    Am I doing something wrong or doesnt it work for older WoW versions?

    Thanks in advance

  13. #11398
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by trolledyou View Post
    Hey guys, Im having some problem to get PQR to work... in before its about Cata 4.3.4

    Im using...
    PQR 2.0 (version 2.2.2.0)
    offset 15595
    Cata 4.3.4

    When I start PQR it finds the progress and the logged-in characters... but somehow are none of the 4.3 rotations working
    (I took them from https://www.assembla.com/code/nova-p...rofiles/PRIEST )

    Am I doing something wrong or doesnt it work for older WoW versions?

    Thanks in advance
    Are you getting any errors? Any messages at all?

    Sent from my SCH-I535 using Tapatalk 4
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  14. #11399
    vitalic's Avatar Contributor CoreCoins Purchaser
    Reputation
    182
    Join Date
    Jun 2010
    Posts
    3,527
    Thanks G/R
    8/3
    Trade Feedback
    10 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    By the way, who created that really nice picture guide for installing PQInterface? I'm trying to find it to show someone but can't remember where I saw it

  15. #11400
    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)
    Former PQR Developer

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 09:50 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