PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 82 of 116 FirstFirst ... 32787980818283848586 ... LastLast
Results 1,216 to 1,230 of 1739
  1. #1216
    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)
    My huge concern is that many profiles used PQI, and PQI used CHAT_MSG_ADDON as a version check...

    Code:
    function ADDON:CHAT_MSG_ADDON( event, prefix, message, channel, sender)
        --if sender == E.myname then return end
        if prefix == "VC" and not ADDON.recievedOutOfDateMessage then
            if ADDON.version ~= 'BETA' and tonumber(message) ~= nil and tonumber(message) > tonumber(ADDON.version) then
                ADDON:Print("Your version of "..AddOnName.." is out of date. You can download the latest version from http://pqrotation.wikia.com/wiki/PQInterface")
                ADDON.recievedOutOfDateMessage = true
            end
    Which means addon messages were communicated to the server, and sent to any listening clients on that addon channel. This is a HUGELY BAD IDEA, as it is essentially advertising to the WoW servers "I AM RUNNING THIS ADDON!" Blizzard logs everything they receive, and it is just a matter of them searching the logs for people advertising their version number on the channel.

    This is why I want to know if anyone was banned without ever having PQI installed.
    Last edited by Xelper; 01-22-2014 at 05:23 PM.

    PQR - Rotation Bot
  2. #1217
    iceymot's Avatar Member
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i use pqi as well. they banned my main account and suspended the other shitty one.
    firs time ever in the 4 years i have been using PQR to have recieved a ban.

  3. #1218
    endersblade's Avatar Member
    Reputation
    1
    Join Date
    May 2009
    Posts
    52
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    Question for anyone banned: Do or did you at any time have PQInterface (PQI) installed?
    Yes. most of the good profiles use it, and it is extremely useful. are you thinking that is what did it?

    Edit: I see. would certainly be interesting to know. Although like I said, most profiles now use it so you may be hard pressed in finding someone who hasn't lol.
    Last edited by endersblade; 01-22-2014 at 05:25 PM.

  4. #1219
    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)
    No idea, could be something else, just still researching and I found that bit of code I posted above.

  5. #1220
    SeveredShadow's Avatar Member
    Reputation
    3
    Join Date
    Aug 2011
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    Question for anyone banned: Do or did you at any time have PQInterface (PQI) installed?
    I had it installed but very very rarely used it. Only when testing other's profiles to see if I liked them or not. My own profile that I used all the time didn't require PQI.

  6. #1221
    GIcez's Avatar Member
    Reputation
    1
    Join Date
    Mar 2013
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've had PQI as well

  7. #1222
    blackvoid's Avatar Member
    Reputation
    1
    Join Date
    Jan 2008
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I used pqr/pqi and got banned today. however my friend only used pqr and no pqi addon and he is not banned. I used pqi to see what rotation it was using. cokx warned us about pqi but i still used it anyways. my friends uses pqr only with cokx profile and he is still using it right now. I didn't believe him so I re-subbed my other account, deleted pqi and used pqr again and it was fine. no bans yet.

  8. #1223
    slavevi's Avatar Member
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    72
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    you do know that the PQI itself says when you start it <PQinterface loaded> i think it said.

  9. #1224
    BPrater4486's Avatar Private
    Reputation
    1
    Join Date
    Apr 2013
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Also just hit with the 3 day Ban. Main account, alt account and the wifes account. All 3 with Pqr/Pqi running, mostly for interrupts. Good thing I already paid for some premium rotations.. Yay Blizz.... you caught us. We were having fun until you showed up lol. Cant catch a Bot but you can catch a rotation manager lol

  10. #1225
    antimonyfunk's Avatar Private
    Reputation
    1
    Join Date
    Jan 2014
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    My huge concern is that many profiles used PQI, and PQI used CHAT_MSG_ADDON as a version check...

    Code:
    function ADDON:CHAT_MSG_ADDON( event, prefix, message, channel, sender)
        --if sender == E.myname then return end
        if prefix == "VC" and not ADDON.recievedOutOfDateMessage then
            if ADDON.version ~= 'BETA' and tonumber(message) ~= nil and tonumber(message) > tonumber(ADDON.version) then
                ADDON:Print("Your version of "..AddOnName.." is out of date. You can download the latest version from http://pqrotation.wikia.com/wiki/PQInterface")
                ADDON.recievedOutOfDateMessage = true
            end
    Which means addon messages were communicated to the server, and sent to any listening clients on that addon channel. This is a HUGELY BAD IDEA, as it is essentially advertising to the WoW servers "I AM RUNNING THIS ADDON!" Blizzard logs everything they receive, and it is just a matter of them searching the logs for people advertising their version number on the channel.

    This is why I want to know if anyone was banned without ever having PQI installed.
    I think some of my profiles used PQI. I know my MW monk and ele sham ones did, that's for sure. My old resto druid - the Nova one - one did too but that one hasn't worked for a while.

  11. #1226
    QuitYourJibbaJabba's Avatar Member
    Reputation
    1
    Join Date
    Sep 2013
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ignore, misread
    Last edited by QuitYourJibbaJabba; 01-22-2014 at 06:15 PM.

  12. #1227
    taker's Avatar Member
    Reputation
    10
    Join Date
    Jul 2008
    Posts
    41
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Installed pqi mid december for testing public profiles, before that 0 problem (started pqr at dragon soul).

  13. #1228
    ginuwine12's Avatar Knight-Lieutenant
    Reputation
    6
    Join Date
    Feb 2013
    Posts
    277
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    maybe someone can test it make a test acc one with PQR only and one with PQR+PQI , than lets see whats happen ?

  14. #1229
    iceymot's Avatar Member
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    regardless of the shitty position i am in with banned account. I still must say a BIG thanks to Xelper for making wow fun! PQR was/is great. I have a shit load of fun with it. Probably without it i would have quit ages ago.

  15. #1230
    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 ginuwine12 View Post
    maybe someone can test it make a test acc one with PQR only and one with PQR+PQI , than lets see whats happen ?
    dont think that would be practical because of the long "window checking" that blizz does before executing mass wave bans

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 11:19 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