PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 52 of 116 FirstFirst ... 2484950515253545556102 ... LastLast
Results 766 to 780 of 1739
  1. #766
    noladrew's Avatar Member
    Reputation
    7
    Join Date
    Jun 2008
    Posts
    57
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    fwiw, my cuteone feral profile seems to be working just fine. dps seems to be a tad lower than normal, but that could just be rng

    PQR - Rotation Bot
  2. #767
    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)
    same here for me-telling me that i need to update PQI even tho i have the latest version of PQI for 5.4
    also i noticed that all of my character movement logic is not working properly-as soon as i load my previously working profile my character just spins around endlessly
    Can someone check the offsets that were provided earlier in the thread to see if maybe one of them is incorrect hence the the erratic movements. Other than those 2 bugs my custom dk rotations are working as intended

  3. #768
    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)
    Note currently posted offsets will not work for profiles that use unit position information. I will have the new offsets up in the next 30 mins or so that will work.

  4. #769
    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)
    Figured out the problem with PQI, looks like Blizzard made a stealth change to the API, IsAddOnLoaded() now returns true as opposed to 1 if the addon is loaded. Profiles need to be updated if they are specifically checking for an integer.

    In the case of Vachiusa's code, you would change:

    Code:
    --Begin PQI
    if (IsAddOnLoaded("PQInterface")) == 1 then
    To:

    Code:
    --Begin PQI
    if IsAddOnLoaded("PQInterface") then
    I got someone to confirm this for me as I'm EU so don't have the patch yet, but should work.

  5. #770
    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)
    thanks Xelper youre one great dude-can you chect to see if the PQI needs to be updated pqr spam is related to the offsets or does PQR need to be updated thx again

  6. #771
    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
    Figured out the problem with PQI, looks like Blizzard made a stealth change to the API, IsAddOnLoaded() now returns true as opposed to 1 if the addon is loaded. Profiles need to be updated if they are specifically checking for an integer.

    In the case of Vachiusa's code, you would change:

    Code:
    --Begin PQI
    if (IsAddOnLoaded("PQInterface")) == 1 then
    To:

    Code:
    --Begin PQI
    if IsAddOnLoaded("PQInterface") then
    I got someone to confirm this for me as I'm EU so don't have the patch yet, but should work.
    Aww you beat me to it Vitalic. I literally just dumped that function and found that. Haha, so guess I confirm that for you.
    Former PQR Developer

  7. #772
    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 kuukuu View Post
    Aww you beat me to it Vitalic. I literally just dumped that function and found that. Haha, so guess I confirm that for you.
    Hehe, oh well at least it was something minor.

  8. #773
    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)
    Originally Posted by vitalic View Post
    Figured out the problem with PQI, looks like Blizzard made a stealth change to the API, IsAddOnLoaded() now returns true as opposed to 1 if the addon is loaded. Profiles need to be updated if they are specifically checking for an integer.

    In the case of Vachiusa's code, you would change:

    Code:
    --Begin PQI
    if (IsAddOnLoaded("PQInterface")) == 1 then
    To:

    Code:
    --Begin PQI
    if IsAddOnLoaded("PQInterface") then
    I got someone to confirm this for me as I'm EU so don't have the patch yet, but should work.
    nice work lol just made the change you suggested and the PQI require profiles work without the out od date spam-hoping that when Xelper posts the new offsets that i get my character movement back since i believe it uses PQR_unitinfo

  9. #774
    mcwhat's Avatar Member CoreCoins Purchaser
    Reputation
    4
    Join Date
    Dec 2008
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vitalic View Post
    Hehe, oh well at least it was something minor.
    Since I use several of his profiles I tried to do a global find/replace and didn't get any results. Then I realized that my editor was plain text so I had to do some conversion.

    Code:
    if (IsAddOnLoaded("PQInterface")) == 1 then
    Code:
    if IsAddOnLoaded("PQInterface") then

  10. #775
    Rockk411's Avatar Private
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vitalic View Post
    Figured out the problem with PQI, looks like Blizzard made a stealth change to the API, IsAddOnLoaded() now returns true as opposed to 1 if the addon is loaded. Profiles need to be updated if they are specifically checking for an integer.

    In the case of Vachiusa's code, you would change:

    Code:
    --Begin PQI
    if (IsAddOnLoaded("PQInterface")) == 1 then
    To:

    Code:
    --Begin PQI
    if IsAddOnLoaded("PQInterface") then
    I got someone to confirm this for me as I'm EU so don't have the patch yet, but should work.
    e/ Found it for anyone wondering where its located for the Vaachiusa's profile its under the abilities.
    Last edited by Rockk411; 12-10-2013 at 05:05 PM.

  11. #776
    snowhawk's Avatar Contributor
    Reputation
    147
    Join Date
    Aug 2008
    Posts
    238
    Thanks G/R
    42/130
    Trade Feedback
    0 (0%)
    Mentioned
    14 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Rockk411 View Post
    What file is that located in? I can't find it to change it.
    You'll usually find it in the abilities file for profiles, most profile devs have an init function where they do the checks there.

  12. #777
    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)
    the abilities .xml file-for me it was under/profiles/interrupt/Alpha Utilities_INTERRUPT_Abilities.xml

  13. #778
    OnehitB's Avatar Active Member
    Reputation
    32
    Join Date
    Jul 2013
    Posts
    143
    Thanks G/R
    13/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So what we need to get it working again? New offset and PQI update?

  14. #779
    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)
    New offsets are on the updater, click Download Offsets. If you installed the released offsets manually, do it anyway as a few of them are off. Blizzard made some minor changes to the object manager, which only happens in major patches usually.
    Last edited by Xelper; 12-10-2013 at 05:13 PM.

  15. #780
    snowhawk's Avatar Contributor
    Reputation
    147
    Join Date
    Aug 2008
    Posts
    238
    Thanks G/R
    42/130
    Trade Feedback
    0 (0%)
    Mentioned
    14 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    New offsets are on the updater, click Download Offsets. If you installed the released offsets manually, do it anyway as a few of them are off.
    Yay! All my directional checks work again! Thanks xelper!

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:20 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