PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 741 of 779 FirstFirst ... 241641691737738739740741742743744745 ... LastLast
Results 11,101 to 11,115 of 11681
  1. #11101
    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 WWF View Post
    any chance to see the code of PQR_IsOutOfSight(), PQR_UnitInfo(), PQR_UnitDistance(), PQR_UnitFacing()?
    https://subversion.assembla.com/svn/..._Reference.lua

    follow that link gives some examples of PQR api's

    and this:
    http://www.ownedcore.com/forums/worl...ml#post2789958 (PQR - Rotation Bot)

    has a few extras the first link misses
    Last edited by crystal_tech; 08-10-2013 at 08:37 AM.

    Please if someone helped you donate rep to them.

    PQR - Rotation Bot
  2. #11102
    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)
    crystal_tech thx but it's all I found in the search.
    I do not need to know what they do, i need to know how they do it, i need their code (the functions body).

  3. #11103
    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)
    Ok, I took the facing code that was posted before, cleaned it up a bit, added a throttle and also fixed the angle checks, it seems to work well and with less fps spikes, feel free to try it.

    PHP Code:
    function GetPointYawAngle(x1y1facingx2y2)
       
    local yaw atan2(y1-y2x1-x2) - facing
       
    if yaw 0 then
          yaw 
    yaw 360
       end
       
    return yaw
    end

    function GetUnitYawAngle(unitID1unitID2)
       if 
    not (UnitExists(unitID1) and UnitExists(unitID2)) then return 0 end
       local x1
    y1_facing PQR_UnitInfo(unitID1)
       
    local x2y2 PQR_UnitInfo(unitID2)
       return 
    GetPointYawAngle(x1y1deg(facing), x2y2)
    end

    function IsUnitFacingUnit(unitID1unitID2throttle)
        if 
    lastFacing == nil then lastFacing false end
        
    if lastFacingTime == nil then lastFacingTime 0 end
        
    if not throttle or (GetTime() - lastFacingTime) > throttle then
            lastFacingTime 
    GetTime()
            
    local yawAngle GetUnitYawAngle(unitID1unitID2)
            if 
    yawAngle and yawAngle 90 then lastFacing true return true end
            
    if yawAngle and yawAngle < -90 then lastFacing true return true end
            lastFacing 
    false
        end
        
    return lastFacing
    end

    function IsUnitBehindUnit(unitID1unitID2throttle)
        return 
    not IsUnitFacingUnit(unitID2unitID1throttle)
    end 
    Last edited by vitalic; 08-10-2013 at 12:51 PM.

  4. #11104
    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)
    yes, I did like this
    PHP Code:
    if FacingTime == nil then FacingTime 0 end
    function PlayerFacingTarget(Time)
        if 
    not UnitExists("target") or UnitIsUnit("player","target"then return false end
        
    if FacingTime GetTime() - Time then 
            FacingTime 
    GetTime() 
            
    local x1,y1,_,facing PQR_UnitInfo(UnitGUID("player"))
            
    local x2,y2 PQR_UnitInfo(UnitGUID("target"))
            
    local yawAngle atan2(y1 y2x1 x2) - deg(facing)
            if 
    yawAngle 0 then yawAngle yawAngle 360 end
            
    if yawAngle 90 and yawAngle 270 then 
                FacingCheck 
    true else FacingCheck false
            end
        end
    end
    if FacingCheck then PlayerFacingTarget(2) else PlayerFacingTarget(1end 
    bigger interval for checking = less frequently framerate drop
    does not work with objects like the foots of Lord Rhyolith
    Last edited by WWF; 08-10-2013 at 01:43 PM.

  5. #11105
    CharleyWex's Avatar Member
    Reputation
    1
    Join Date
    Dec 2011
    Posts
    57
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Latest PTR Offsets

    <?xml version="1.0" encoding="UTF-8"?>
    <Offsets>
    <CurrentWoWVersion>17271</CurrentWoWVersion>
    <WoWVersionOffset>0xD9DF35</WoWVersionOffset>
    <PlayerName>0xFE4720</PlayerName>
    <PlayerClass>0xFE489D</PlayerClass>
    <GetCurrentKeyBoardFocus>0xCC57B8</GetCurrentKeyBoardFocus>
    <GameState>0xE85C3E</GameState>
    <Lua_DoStringAddress>0x5A664</Lua_DoStringAddress>
    <Lua_GetLocalizedTextAddress>0x488F92</Lua_GetLocalizedTextAddress>
    <CVarBaseMgr>0xCA6270</CVarBaseMgr>
    <CVarArraySize>0x400</CVarArraySize>
    <ObjMgr>0xDD8464</ObjMgr>
    <CurMgr>0x462C</CurMgr>
    <LocalGUID>0xE0</LocalGUID>
    <FirstObject>0xCC</FirstObject>
    <NextObject>0x34</NextObject>
    <Descriptors>0x4</Descriptors>
    <Obj_TypeOffset>0xC</Obj_TypeOffset>
    <Obj_X>0x7F8</Obj_X>
    <Obj_TargetGUID>0x28</Obj_TargetGUID>
    <ClickTerrain>0</ClickTerrain>
    </Offsets>

  6. #11106
    odie200's Avatar Private
    Reputation
    1
    Join Date
    Aug 2013
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how do i get PQR to work on the PTR i downloaded the newest offsets and it only will go into edit mod someone plz hlp

  7. #11107
    Uitham's Avatar Member
    Reputation
    2
    Join Date
    Apr 2007
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by odie200 View Post
    how do i get PQR to work on the PTR i downloaded the newest offsets and it only will go into edit mod someone plz hlp
    1. Go to the offsets folder
    2. Copy and paste another offset file, like Offsets_17128.xml
    3. Rename that to Offsets_(ptr version).xml, so in this case Offsets_17271.xml
    4. Open the file in notepad
    5. Replace all the contents with what was posted above here, so

    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <Offsets>
    <CurrentWoWVersion>17271</CurrentWoWVersion>
    <WoWVersionOffset>0xD9DF35</WoWVersionOffset>
    <PlayerName>0xFE4720</PlayerName>
    <PlayerClass>0xFE489D</PlayerClass>
    <GetCurrentKeyBoardFocus>0xCC57B8</GetCurrentKeyBoardFocus>
    <GameState>0xE85C3E</GameState>
    <Lua_DoStringAddress>0x5A664</Lua_DoStringAddress>
    <Lua_GetLocalizedTextAddress>0x488F92</Lua_GetLocalizedTextAddress>
    <CVarBaseMgr>0xCA6270</CVarBaseMgr>
    <CVarArraySize>0x400</CVarArraySize>
    <ObjMgr>0xDD8464</ObjMgr>
    <CurMgr>0x462C</CurMgr>
    <LocalGUID>0xE0</LocalGUID>
    <FirstObject>0xCC</FirstObject>
    <NextObject>0x34</NextObject>
    <Descriptors>0x4</Descriptors>
    <Obj_TypeOffset>0xC</Obj_TypeOffset>
    <Obj_X>0x7F8</Obj_X>
    <Obj_TargetGUID>0x28</Obj_TargetGUID>
    <ClickTerrain>0</ClickTerrain>
    </Offsets>

  8. #11108
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Or JPS dps-addon! lol

  9. #11109
    Cavalierz24's Avatar Banned
    Reputation
    1
    Join Date
    Jan 2011
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I downloaded the program and downloaded my rotation and put it in correct folder, i run the program select my toon and then go into game and Hold down Alt+x and it says enabled and then it does nothing no attacking at all. please help its going on 3 days and i can't figure it out its pissing me off.

  10. #11110
    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 vitalic View Post
    Why wait when you can use "ShadowBot" which apparently does 20% more DPS than PQR!
    Wait what? That's a new one to me.
    Former PQR Developer

  11. #11111
    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 Cavalierz24 View Post
    I downloaded the program and downloaded my rotation and put it in correct folder, i run the program select my toon and then go into game and Hold down Alt+x and it says enabled and then it does nothing no attacking at all. please help its going on 3 days and i can't figure it out its pissing me off.
    is wow running windowed fullscreen?

    Please if someone helped you donate rep to them.

  12. #11112
    Vinshom's Avatar Contributor
    Reputation
    86
    Join Date
    Apr 2012
    Posts
    428
    Thanks G/R
    11/21
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vitalic View Post
    Why wait when you can use "ShadowBot" which apparently does 20% more DPS than PQR!
    You are joking right?

  13. #11113
    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 kuukuu View Post
    Wait what? That's a new one to me.
    i use shadow bot, its basicly then new lazy bot with some improvements. its great for gathering which is what i use it for... but its so bad at dps its funny (at least for my shadow priest who is my boter) it could just be the standard profile but it was doing so bad it would die to lvl 85 mobs and hes 90... after deciding to use PQR along side the bot the difference was night and day lol.

    in short its a awesome (100% fully passive wow bot!) that works wonders for gathering/grinding/and to a point pvp, but is no rotation bot.

    here is the link if u want to check it out: Shadow Bot - Your premier windows leveling bot!

    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

  14. #11114
    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 Vinshom View Post
    You are joking right?
    Yes, yes he is.

    Sent from my Galaxy S4 using Tapatalk 2

  15. #11115
    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 paintpauller View Post
    i use shadow bot, its basicly then new lazy bot with some improvements. its great for gathering which is what i use it for... but its so bad at dps its funny (at least for my shadow priest who is my boter) it could just be the standard profile but it was doing so bad it would die to lvl 85 mobs and hes 90... after deciding to use PQR along side the bot the difference was night and day lol.

    in short its a awesome (100% fully passive wow bot!) that works wonders for gathering/grinding/and to a point pvp, but is no rotation bot.

    here is the link if u want to check it out: Shadow Bot - Your premier windows leveling bot!
    Apparently there's a plug in for it called Goblin, that's what is apparently doing 15-20k more dps then paid PQR profiles. Sounds like either made up BS or really badly coded paid profiles. lol
    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 07:02 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