PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 28 of 116 FirstFirst ... 24252627282930313278 ... LastLast
Results 406 to 420 of 1739
  1. #406
    kronos20102's Avatar Banned
    Reputation
    1
    Join Date
    Nov 2012
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    fully working, but the FPS drops =(
    <?xml version="1.0" encoding="UTF-8"?>
    <Offsets>
    <CurrentWoWVersion>17498</CurrentWoWVersion>
    <WoWVersionOffset>0xDAFE15</WoWVersionOffset>
    <PlayerName>0xFF6E48</PlayerName>
    <PlayerClass>0xFF6FC5</PlayerClass>
    <GetCurrentKeyBoardFocus>0xCD76F8</GetCurrentKeyBoardFocus>
    <GameState>0xE9854E</GameState>
    <Lua_DoStringAddress>0x5CB2C</Lua_DoStringAddress>
    <Lua_GetLocalizedTextAddress>0x49F829</Lua_GetLocalizedTextAddress>
    <CVarBaseMgr>0xCB8100</CVarBaseMgr>
    <CVarArraySize>0x400</CVarArraySize>
    <ObjMgr>0xDEA1B4</ObjMgr>
    <CurMgr>0x462C</CurMgr>
    <ClntObjMgrGetActivePlayerObjAddress>0x59E1</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>
    Last edited by kronos20102; 10-20-2013 at 06:48 AM.

    PQR - Rotation Bot
  2. #407
    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)
    There really should be a /PQI config reset or something similar, I just dragged the top of the menu out of view by accident and couldn't find a way to get it back haha.

    Perhaps there is a simpler way, but I created an emergency macro to drag the window back:

    Code:
    /run if not dragTime then dragTime = GetTime() _G["PQInterface"].rotationConfig:StartMoving() end
    /run if GetTime() - dragTime > 2 then _G["PQInterface"].rotationConfig:StopMovingOrSizing() dragTime = nil end
    Press it once, move window back into view, press it again to stop dragging. I think you then have to move the window again for PQI to save the new position.

  3. #408
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    your nil is if you don't have bw up it returns a nil

    this is for the second code pc.

    Code:
    local BWStart, BWDuration = GetSpellCooldown(19574)
    local BWCD = 999
    
    if UnitBuffID("player", id) then
    BWCD  = BWStart + BWDuration - GetTime() 
    else
    BWCD = 999
    end
    this sets your local to something thats not a nil

    you then need to check if not 999 or your CDTime then do something. its prob the same thing with the pet code just check for the debuff first then do the math.
    Are you sure that this is the reason? I use the same code to track black arrow, explosive shot, chimera shot and a lot of other abilities that don't have anything to do with buffs and they don't bring up this nil value error.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017

  4. #409
    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 kickmydog View Post
    Are you sure that this is the reason? I use the same code to track black arrow, explosive shot, chimera shot and a lot of other abilities that don't have anything to do with buffs and they don't bring up this nil value error.
    id say just try it and see if it fixes it. however the error your getting is do to the fact your doing math with a nil value when its declaring that local value.

    Please if someone helped you donate rep to them.

  5. #410
    MrHeroe's Avatar Member
    Reputation
    3
    Join Date
    May 2013
    Posts
    67
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    One question regarding event handling.

    If i have an eventhandler function for ... say ... COMBAT_LOG_EVENT_UNFILTERED. By the time an event was fired - when does my function catch it? On its turn or immediately?

    For example

    - ability 1
    - ability 2
    - ability 3
    - EVENT FUNCTION
    - ability 4
    ...

    While executing the sequence - Does the wow api calls my event function or does my event function collect the event the data on its turn from the wow api?

  6. #411
    cpowroks's Avatar Contributor
    Reputation
    180
    Join Date
    Oct 2007
    Posts
    623
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The Event code is actually ran inside wow and not from PQR so even if you turn off the rotation it will still contune to do what ever is in that event function untill you reload ui or logout.
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  7. #412
    overpower's Avatar Member
    Reputation
    1
    Join Date
    Apr 2008
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kronos20102 View Post
    fully working, but the FPS drops =(
    <?xml version="1.0" encoding="UTF-8"?>
    <Offsets>
    <CurrentWoWVersion>17498</CurrentWoWVersion>
    <WoWVersionOffset>0xDAFE15</WoWVersionOffset>
    <PlayerName>0xFF6E48</PlayerName>
    <PlayerClass>0xFF6FC5</PlayerClass>
    <GetCurrentKeyBoardFocus>0xCD76F8</GetCurrentKeyBoardFocus>
    <GameState>0xE9854E</GameState>
    <Lua_DoStringAddress>0x5CB2C</Lua_DoStringAddress>
    <Lua_GetLocalizedTextAddress>0x49F829</Lua_GetLocalizedTextAddress>
    <CVarBaseMgr>0xCB8100</CVarBaseMgr>
    <CVarArraySize>0x400</CVarArraySize>
    <ObjMgr>0xDEA1B4</ObjMgr>
    <CurMgr>0x462C</CurMgr>
    <ClntObjMgrGetActivePlayerObjAddress>0x59E1</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>
    Your Offset work but PQR_PQI is causing 100's of Lua Errors i think it must be updatet to work on PTR.

  8. #413
    MrHeroe's Avatar Member
    Reputation
    3
    Join Date
    May 2013
    Posts
    67
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    all right - great. Whats about the protected calls if the pcr profile is turned off?

  9. #414
    cpowroks's Avatar Contributor
    Reputation
    180
    Join Date
    Oct 2007
    Posts
    623
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MrHeroe View Post
    all right - great. Whats about the protected calls if the pcr profile is turned off?
    im 99% sure the LUA unlocker part of PQR is still active when you can test this by starting up PQR starting a profile then stoping it (this is important because PQR doesnt seem to turn on the LUA unlocker until you start a profile for the first time) then try to /dump a protected API call and it will work.
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  10. #415
    jshookz's Avatar Member
    Reputation
    1
    Join Date
    Aug 2013
    Posts
    203
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by overpower View Post
    Your Offset work but PQR_PQI is causing 100's of Lua Errors i think it must be updatet to work on PTR.
    How do we add the PQR offsets into our folder? Or make an XML document?

    EDIT: Nevermind figured out I could copy and just edit the offset in notepad :P
    Last edited by jshookz; 10-21-2013 at 06:50 PM.

  11. #416
    MrHeroe's Avatar Member
    Reputation
    3
    Join Date
    May 2013
    Posts
    67
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you very much cpo =)

  12. #417
    Moonscarlet's Avatar Member
    Reputation
    1
    Join Date
    Apr 2010
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there anyway to do a sleep/wait in PQR?
    I tried PQR_DelayRotation(1) but I want this to check if I have some buff on me (invoker's energy) the problem with this is that even when I add the function above the cast or below it still waits before the cast, I only want to wait after the cast.
    If I don't use sleep/wait, sometimes it casts evocation twice (you get the buff by casting evocation) because after first time it's casted there's a split second when the buff is still not on me so it does it again.
    I hope someone who met something similar to this can help, thanks in advance. :>


    PHP Code:
    if PQR_SpellAvailable(12051) and not UnitBuffID("player",116257then
        CastSpellByID
    (12051)
        
    PQR_DelayRotation(3)
    end 
    Last edited by Moonscarlet; 10-23-2013 at 08:04 AM.

  13. #418
    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 Moonscarlet View Post
    Is there anyway to do a sleep/wait in PQR?
    I tried PQR_DelayRotation(1) but I want this to check if I have some buff on me (invoker's energy) the problem with this is that even when I add the function above the cast or below it still waits before the cast, I only want to wait after the cast.
    If I don't use sleep/wait, sometimes it casts evocation twice (you get the buff by casting evocation) because after first time it's casted there's a split second when the buff is still not on me so it does it again.
    I hope someone who met something similar to this can help, thanks in advance. :>


    PHP Code:
    if PQR_SpellAvailable(12051) and not UnitBuffID("player",116257then
        CastSpellByID
    (12051)
        
    PQR_DelayRotation(3)
    end 
    Code:
    if not _timer then _timer = 0 end
    if _timer == 0 or GetTime() - _timer < 1.5 then
         if PQR_SpellAvailable(12051) and not UnitBuffID("player", 116257) then
              _timer = GetTime()
              CastSpellByName(GetSpellInfo(12051), nil)
         end
    end
    try this

    Please if someone helped you donate rep to them.

  14. #419
    Moonscarlet's Avatar Member
    Reputation
    1
    Join Date
    Apr 2010
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    Code:
    if not _timer then _timer = 0 end
    if _timer == 0 or GetTime() - _timer < 1.5 then
         if PQR_SpellAvailable(12051) and not UnitBuffID("player", 116257) then
              _timer = GetTime()
              CastSpellByName(GetSpellInfo(12051), nil)
         end
    end
    try this
    It only casted evocation once and when the buff faded it never did it again :x

  15. #420
    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 Moonscarlet View Post
    It only casted evocation once and when the buff faded it never did it again :x
    sorry mistyped a <

    in

    if _timer == 0 or GetTime() < 1.5 then

    should be

    if _timer == 0 or GetTime() > 1.5 then

    try that.

    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. [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
  3. rotation bot leveling (PQR)
    By classdog in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 09-17-2013, 06:13 PM
  4. [Release] PQR - Rotation Bot
    By Xelper in forum World of Warcraft Bots and Programs
    Replies: 11680
    Last Post: 09-16-2013, 07:47 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