PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 27 of 116 FirstFirst ... 23242526272829303177 ... LastLast
Results 391 to 405 of 1739
  1. #391
    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)
    Originally Posted by Wildbreath View Post
    TargetNearestEnemy(true) and check unit health+debuffs
    you can hook WorldFrame for count red nameplates (enemy count) and make some automate for aoe dotting

    for example:

    Code:
     -- only for enemy nameplates enabled
    local enemyCount = 0
    CreateFrame('frame', nil, UIParent):SetScript('OnUpdate', function(self, elapsed)
    	enemyCount = 0
    	for index = 1, select('#', WorldFrame:GetChildren()) do
    		local frame = select(index, WorldFrame:GetChildren())
    		if frame:GetName() and frame:GetName():find('NamePlate%d') then
    			if frame:IsShown() then enemyCount = enemyCount + 1 end
    		end
    	end
    end)
    is there any way to hook a range check into this ?

    PQR - Rotation Bot
  2. #392
    Wildbreath's Avatar Contributor
    Reputation
    162
    Join Date
    Feb 2012
    Posts
    121
    Thanks G/R
    2/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Mavmins View Post
    is there any way to hook a range check into this ?
    no. btw if you see nameplate you can attack it using range spell (40 yds)


    Sent from my iPhone using Tapatalk - now Free

  3. #393
    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)
    Well advanced name plates includes a range check so maybe can use something similar ? Is there anyway to target a nameplate by guid or something ? Or set nameplate distance to melee range ?

  4. #394
    rootlsuer's Avatar Active Member
    Reputation
    30
    Join Date
    Jul 2013
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by fzU View Post
    Any possibility to use razer mouse buttons Num1-12? like IsMouseButtonDown(9) ?
    I just map my razor keys to spell queuing macros. Razor mice have not mouse button 9 though steel series/wow mice do. It's up to the hardware maker to add the mouse buttons in their HID device driver.

  5. #395
    xcureanddisease's Avatar Legendary
    Reputation
    855
    Join Date
    Oct 2009
    Posts
    693
    Thanks G/R
    74/235
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there a Mac version of PQR and PQI?

  6. #396
    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)
    help finish line where there are signs -???????? PTR is working on but need to add one line where ???????????????>>>>>>>>><ClntObjMgrGetActivePlayerObjAddress>0xD45E</ClntObjMgrGetActivePlayerObjAddress><<<<???????????
    <?xml version="1.0" encoding="UTF-8"?>
    <Offsets>
    <CurrentWoWVersion>17481</CurrentWoWVersion>
    <WoWVersionOffset>0xDAFDF5</WoWVersionOffset>
    <PlayerName>0xFF6E28</PlayerName>
    <PlayerClass>0xFF6FA5</PlayerClass>
    <GetCurrentKeyBoardFocus>0xCD76D8</GetCurrentKeyBoardFocus>
    <GameState>0xE9852E</GameState>
    <Lua_DoStringAddress>0x5C8BB</Lua_DoStringAddress>
    <Lua_GetLocalizedTextAddress>0x49F36A</Lua_GetLocalizedTextAddress>
    <CVarBaseMgr>0xCB80E0</CVarBaseMgr>
    <CVarArraySize>0x400</CVarArraySize>
    <ObjMgr>0xDEA194</ObjMgr>
    <CurMgr>0x462C</CurMgr>
    ???????????????>>>>>>>>><ClntObjMgrGetActivePlayerObjAddress>0xD45E</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>

  7. #397
    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)
    guy's comeon someone make offset for PTR I would appreciate it, thank you whoever make it.

    PTR Build = 17498

  8. #398
    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 xcureanddisease View Post
    Is there a Mac version of PQR and PQI?
    Nope sorry

    Sent from my Galaxy S4 using Tapatalk 2

  9. #399
    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)
    I'm having a problem with the following two pieces of code for different abilities. However the code comes up with the same error which is bugging the hell out of me.

    PHP Code:
    if (select(7,UnitBuffID("pet",115939)) - GetTime() < 1)
    then return true end 
    and the other code

    PHP Code:
    local BWStartBWDuration GetSpellCooldown(19574)
    local BWCD BWStart BWDuration GetTime() 
    The error I receive is.

    attempt to perform arithmetic on a nil value

    However I don't believe any of the code actually returns a nil value.
    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

  10. #400
    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)
    im also having the same problem as kronos20102
    anyone know how to get this offset ?

  11. #401
    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
    I'm having a problem with the following two pieces of code for different abilities. However the code comes up with the same error which is bugging the hell out of me.

    PHP Code:
    if (select(7,UnitBuffID("pet",115939)) - GetTime() < 1)
    then return true end 
    and the other code

    PHP Code:
    local BWStartBWDuration GetSpellCooldown(19574)
    local BWCD BWStart BWDuration GetTime() 
    The error I receive is.

    attempt to perform arithmetic on a nil value

    However I don't believe any of the code actually returns a nil value.
    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.

    Please if someone helped you donate rep to them.

  12. #402
    CodeMyLife's Avatar Contributor
    Reputation
    272
    Join Date
    Mar 2013
    Posts
    707
    Thanks G/R
    24/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    PQR - Rotation Bot

    Nm wrong subject haha
    Last edited by CodeMyLife; 10-19-2013 at 09:35 PM.
    Soapbox Rotations Developer

  13. #403
    lethalx's Avatar Member
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    id like a ptr build as well

  14. #404
    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)
    I did Offsets_17498 WORKS but it is very small FPS. need to write a single line <ClntObjMgrGetActivePlayerObjAddress>0x?????????????????????????????????</ClntObjMgrGetActivePlayerObjAddress>

    <?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>
    <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>

  15. #405
    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)
    working offsets would be awesome!

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 10:18 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