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.