PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 704 of 779 FirstFirst ... 204604654700701702703704705706707708754 ... LastLast
Results 10,546 to 10,560 of 11681
  1. #10546
    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)
    Anybody have a copy of PQR 2.2.1 I could get off them? I just updated to the new one Xelper put out and for some reason, now I'm getting Action Forbidden errors coming up on various addons and rotations stop working altogether until I reload. Then they work for a bit before the message comes up again and it's happening with all my profiles
    Former PQR Developer

    PQR - Rotation Bot
  2. #10547
    the3idyankus's Avatar Member
    Reputation
    1
    Join Date
    May 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've also been getting massive amounts of LUA errors since upgrading to 2.2.2. If anyone has 2.2.1 I would appreciate it!

  3. #10548
    sadcoder's Avatar Private
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    my just crash every time when i start rotation ingame

  4. #10549
    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)
    I didnt update to 2.1, did not see it go to be honest and still on 2.0 so, I have just put it on my SVN for you guyz if you need it.

    codemylife - Revision 159: /

  5. #10550
    sadcoder's Avatar Private
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok got this working now... i find new rotations 5.3 and get that PQinterface addon and now work fine for me...

  6. #10551
    Tamrael's Avatar Member
    Reputation
    4
    Join Date
    Jun 2008
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    PQR 2.2.1 for those that need it.link will go down as soon as the errors addresse are not occuring anymore/xelper want it down

  7. #10552
    botirk's Avatar Master Sergeant
    Reputation
    14
    Join Date
    May 2013
    Posts
    118
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Here is SimCraft integration library with my profile as example:
    Download Pqr.zip - Kiwi6 Mp3 Upload

    In most if statements, you required buff[],debuff[],cooldown[] etc statements:
    buff,debuff,cooldown = AIBuff(),AIDebuff(),AICooldown()
    buff.bloodlust = 10234
    dot.rake = 12312


    It can parse if statement, and returns function. This function will return false or true/infinity otherwise:
    local foo1 = AIParse("buff.bloodlust.up&dot.rake.remains<3")

    It contains easy spell procession, it returns function. This function will check spell cooldown, return true if used, false otherwise:
    local foo2 = AISpell(12312,"target")
    if foo1() and foo2() then return true end


    Warning! you should fix react string, cause lua behaviour:
    wrong! local foo = AIParse("buff.bloodlust.react")
    good! local foo = AIParse("buff.bloodlust.react~=0")
    good! local foo = AIParse("buff.bloodlust.react=2")

    Warning! complex statements like dot.rake.multiplier ,swing,etc are not supported. Anyway most ActionLists don't contain complex statements.
    Last edited by botirk; 06-20-2013 at 11:56 PM.

  8. #10553
    hcomaler's Avatar Member
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Please, could someone make a offset for PTR 5.4.0 (17093).

    Thanks

  9. #10554
    Rubim's Avatar Contributor
    Reputation
    247
    Join Date
    Mar 2010
    Posts
    267
    Thanks G/R
    4/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Axercis View Post
    Does PlaySoundFile work in abilities? I dont get an error when I use it, but I also never hear the sound it's supposed to play. I'm trying to make it so mouseover casts make a confirmation sound when they go off, so I don't have to keep mousing over the target to update the debuff widget on the V-Bar.
    They do, you can try:
    API PlaySound - WoWWiki - Your guide to the World of Warcraft
    Code:
    PlaySound("LEVELUPSOUND", "master")
    or

    API PlaySoundFile - WoWWiki - Your guide to the World of Warcraft
    Code:
    PlaySoundFile("Sound\\Spells\\FistOfJustice.wav")
    Originally Posted by botirk View Post
    Here is SimCraft integration library with my profile as example:
    Download Pqr.zip - Kiwi6 Mp3 Upload

    In most if statements, you required buff[],debuff[],cooldown[] etc statements:
    buff,debuff,cooldown = AIBuff(),AIDebuff(),AICooldown()
    buff.bloodlust = 10234
    dot.rake = 12312


    It can parse if statement, and returns function. This function will return false or true/infinity otherwise:
    local foo1 = AIParse("buff.bloodlust.up&dot.rake.remains<3")

    It contains easy spell procession, it returns function. This function will check spell cooldown, return true if used, false otherwise:
    local foo2 = AISpell(12312,"target")
    if foo1() and foo2() then return true end


    Warning! you should fix react string, cause lua behaviour:
    wrong! local foo = AIParse("buff.bloodlust.react")
    good! local foo = AIParse("buff.bloodlust.react~=0")
    good! local foo = AIParse("buff.bloodlust.react=2")

    Warning! complex statements like dot.rake.multiplier ,swing,etc are not supported. Anyway most ActionLists don't contain complex statements.
    Nice one.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063

  10. #10555
    tolga's Avatar Private
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Please, could someone make a offset for (17093).

    Thanks

  11. #10556
    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)
    Originally Posted by tolga View Post
    Please, could someone make a offset for (17093).

    Thanks
    Huh? There's an update today? Logged in an hour ago and still on 17055 on US side at least.
    Soapbox Rotations Developer

  12. #10557
    tolga's Avatar Private
    Reputation
    1
    Join Date
    Jun 2013
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by CodeMyLife View Post
    Huh? There's an update today? Logged in an hour ago and still on 17055 on US side at least.
    this is ptr

  13. #10558
    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 tolga View Post
    Please, could someone make a offset for (17093).

    Thanks
    I Know how to get most of the offsets. How ever I have no idea how to get the rest.

    If some one could show me how to get:

    CVarArraySize
    CurMgr
    LocalGUID
    FirstObject
    NextObject
    Descriptors
    Obj_TypeOffset
    Obj_X
    Obj_TargetGUID

    ill totaly post off sets for the PTR builds. But im sorta a newb at reversing.
    Last edited by cpowroks; 06-21-2013 at 05:43 PM.
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  14. #10559
    lostinthewoodslol's Avatar Active Member The Coinmaster CoreCoins Purchaser
    Reputation
    74
    Join Date
    Aug 2011
    Posts
    222
    Thanks G/R
    12/6
    Trade Feedback
    15 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    for some reason when i open pqr, then start the rotation it does nothing, every rotation, every class.

    i have updated offsets, i have tried a fresh version of 2.0, and 2.2. it just instantly says not responding, it has only just started happening this morning, worked perfectly last night and i have not changed a thing

    any ideas?

    edit: ok seems to be only my shaman in particular. i have tried over 10 different profiles, none will load. only interrupt. fml

    fixed: 3hours of debugging, a simple "\" underneath a random ability. caused a massive shitfight. gg
    Last edited by lostinthewoodslol; 06-21-2013 at 09:16 PM.

  15. #10560
    Weird0's Avatar Contributor
    Reputation
    137
    Join Date
    Jan 2009
    Posts
    352
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by cpowroks View Post
    I Know how to get most of the offsets. How ever I have no idea how to get the rest.

    If some one could show me how to get:

    CVarArraySize
    CurMgr
    LocalGUID
    FirstObject
    NextObject
    Descriptors
    Obj_TypeOffset
    Obj_X
    Obj_TargetGUID

    ill totaly post off sets for the PTR builds. But im sorta a newb at reversing.
    Code:
    clientConnection = 0xFFCE5A4D;
    targetGuid = 0x33E0000;
    lastTargetGuid = 0x3DFF00;
    cmd = 0xAAB664;
    DX_DEVICE = 0xFFCE5A4D;
    gameState = 0xFFCE5A4D;
    isLoadingOrConnecting = 0xFFCE5A4D;
    continentId = 0xEBC955C3;
    lastWowErrorMessage = 0x23E905A;
    petGUID = 0xFFCE5A4D;
    playerName = 0xFFCE5A4D;
    PlayerComboPoint = 0xFFCE5A4D;
    FACTION_START_INDEX = 0xFFCE5A4D;
    FACTION_POINTER = 0xFFCE5A4D;
    FACTION_TOTAL = 0xFFCE5A4D;
    startBar = 0xFFCE5A4D;
    nbBar = 0xFCFB58;
    baseBoxChat = 0xFFCE5A4D;
    statBoxChat = 0xFFCE5A4D;
    knownSpell = 0xFFCE5A4D;
    nbSpell = 0xFFCE5A4D;
    chatBufferStart = 0xC028308;
    chatBufferPos = 0xFFCE5A4D;
    CorpsePlayerX = 0xDB960FF3;
    nameStorePtr (offset + 0x8) = 0xFFCE5A4D;
    playerSelected = 0xFFCE5A4D;
    textTextBoxSelectedPtr = 0xFFCE5A4D;
    loginSelectedTextBoxId = 0xFFCE5A4D;
    numberOfPlayer = 0xFFCE5A4D;
    isLoginPage = 0xFFCE5A4D;
    AutoLoot_Activate_Pointer = 0xFFCE5A4D;
    AutoSelfCast_Activate_Pointer = 0xBB3FF08;
    AutoInteract_Activate_Pointer = 0xFFCE5A4D;
    statPvp = 0xFFCE5A4D;
    pvpExitWindow = 0xFFCE5A4D;
    selectedBattleGroundID = 0xFFCE5A4D;
    did a quick and dirty dump dont know what you might need since i first started getting into this stuff a few days ago also a few might be missing im still pretty much figuring out how to work with this
    was made with WoW Version 5.4.0 (17093) (Test x86)

    /edit

    forgot to mention i do not guarantee this to be correct since i still get moments where i kinda see myself like that meme with the dog with the lab equipment where it says "i have no idea what im doing"
    Last edited by Weird0; 06-21-2013 at 11:38 PM.

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 01:44 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