Stories
Slash Boxes
Comments

News for nerds, stuff that matters

Linux Users Banned From World of Warcraft?

Posted by ScuttleMonkey on Wed Nov 15, 2006 12:51 PM
from the walking-the-fine-line dept.
Turmoyl writes "Many Cedega (formerly WINEX) users claim to have been mistakenly caught up in a security sweep of the U.S. game servers performed by Blizzard's World of Warcraft Game Master (GM) staff. Affected users received the same strongly-worded 'Notice of Account Closure' email messages that true bot users did, in which they were accused of the 'Use of Third Party Automation Software.' While diagnosis of this event continues early speculation points to Blizzard's use of the Warden anti-cheating spyware application that is bundled with World of Warcraft, and the odd things that may have been produced by it when it was run via Cedega. Emails to World of Warcraft's Account Administration staff continue to go unanswered while the list of affected people continues to grow."
This discussion has been archived. No new comments can be posted.
Display Options Threshold:
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
  • My Guesses & Opinions (Score:5, Interesting)

    Well, I've talked with someone who does a lot of this sort of stuff and he explained to me that long ago when Blizzard first debuted WoW, it was an instant success. And there were many people that had developed scripts (duping, afk farming, etc) for games like Diablo that wanted to to do the same thing for WoW.

    The art of doing this successfully lies in knowing what addresses of memory that your client application is using to store data. You change these memory addresses & your client's state is altered. But there's some things you can't change because they're located on the server. Realistically, the client has to do some of the computation and storing itself (and with WoW being some huge multi-gigabyte client, there's a lot to investigate). Obvious, you want to reduce network traffic and give your servers a break so you design this to have minimal communication.

    The problem then becomes that users will write applications to modify the data & memory that their client applications are using. What results is signals sent back to the server which aren't true and give that user an advantage. Solution? Enter Warden to check these memory spaces and files for any potentially unauthorized changes (checksums, whatever method they want to use or seeing which threads are accessing that memory). And how do you protect Warden from it itself being hacked? You design it kind of like a root kit--that is the user shouldn't be able to alter or disable Warden & they lose the domain over that tiny bit of functionality of their hard drive.

    My guess is that before, they were checking if there were any known scripting or programs that were unauthorized and changing this data. And they were banning those and only those accounts. I fear that it now does a verification on the memory space, files & system registry to ensure that it is not being molested by another application or tweaked at all. I am guessing that they have changed the ban notice to ban whenever this verification stage fails and that Cedegra does not emulate Windows to the point of their verification satisfaction or to the point of Warden being able to query all other running applications. Worse yet, I fear they may look to integrate this with the WGA with Windows & some other means with Macs--though that is pure speculation on my part.

    The irony of it all? The fact that a talented programmer with burp or some other styled network tool and use linux on a routing box to intercept packets and change them to give him position hacks. Unfortunately, if you use this too much, I believe that random server side verification checks will eventually catch up with you but I can't say I've ever implemented this or been caught using it.

    Which brings me to one last point I'd like to make on this topic. I think that this cat n' mouse game of Blizzard versus the cheaters is good for AI. The last possible domain we have is people writing applications that extract data from video memory and use computer vision algorithms to write if-then-case bots. Yes, bots are bad but this is driving people to a corner where they essentially strive to pass the Turing Test ... after all, you don't want a GM messaging your bot as he sits idle doing his repetitive task, do you?
    • The Only Winning Move (Score:4, Insightful)

      by Anonymous Coward on Wednesday November 15 2006, @01:02PM (#16855274)
      >doing his repetitive task

      I choose not to play games that hinge on this so much. Aside from the monthly fees, something like Oblivion's fast travel (or even console commands when the gates got boring) is the sign of a better game to me, instead of one which rewards behavior that can be currently emulated by a computer. It's not a job, it's a game!
      [ Parent ]
      • Re:The Only Winning Move by Broken scope (Score:2) Wednesday November 15 2006, @01:12PM
        • Re:The Only Winning Move by arth1 (Score:2) Wednesday November 15 2006, @01:21PM
        • Re:The Only Winning Move by Meagermanx (Score:2) Wednesday November 15 2006, @01:26PM
          • Re:The Only Winning Move by L7_ (Score:1) Wednesday November 15 2006, @01:31PM
            • Re:The Only Winning Move by SyncNine (Score:2) Wednesday November 15 2006, @01:58PM
              • Re:The Only Winning Move (Score:5, Informative)

                by Typhon100 (641308) on Wednesday November 15 2006, @02:14PM (#16856612)
                As I posted below, the LUA interface doesn't provide move commands. Here's what some of the most popular "mods" are:
                • Look/feel changes: These simply change the appearance of the GUI. Sometimes they add more information, like overlaying a % over the enemies health bar, or highlighting party members who are taking damage.
                • Bars: Many of the early addons were to add more buttons, until Blizzard implemented this themselves.
                • Raid: lots of addons help with raiding, like showing the health of everyone in the raid, showing the main tank's target, etc. Also, debuff cleansing with one button press (scans the raid and casts an appropriate cure spell), though this is being disabled by Blizzard in the coming expansion.
                • Additional GUI: some mods don't just modify the existing GUI they add more. A bar across the top listing money, regen rate, your (x,y) location on the map, your XP/hour, your fps and ping, the amount of ammo you have left, etc. For classes with reagent needs it can track those.

                As you can see most add-ons revolve around giving the user more information. The closest thing to botting there is the auto-curing, which is on its way out.
                [ Parent ]
              • Re:The Only Winning Move by SyncNine (Score:2) Wednesday November 15 2006, @04:19PM
              • Re:The Only Winning Move by C0R1D4N (Score:1) Thursday November 16 2006, @12:43AM
              • Re:The Only Winning Move by guardian-ct (Score:1) Thursday November 16 2006, @01:03PM
              • Re:The Only Winning Move by Res3000 (Score:1) Thursday November 23 2006, @06:02AM
            • Re:The Only Winning Move by Thansal (Score:2) Wednesday November 15 2006, @02:02PM
            • Re:The Only Winning Move by Typhon100 (Score:3) Wednesday November 15 2006, @02:05PM
            • Re:The Only Winning Move (Score:4, Insightful)

              by lewp (95638) on Wednesday November 15 2006, @02:09PM (#16856514)
              (Last Journal: Monday February 27 2006, @09:54PM)
              Right now you could conceivably, with a piece of outside hardware/software to generate keyboard press events (WoW ties spell casting, movement, and most other combat-useful actions to keyboard events), do most or all of a bot's scripting in Lua. This is, however, not how current WoW bots work (I'm familiar with the code underlying a couple of them, and know the details of more). Moreover, this capability will be removed forever when WoW's 2.0 patch (in a few weeks) greatly restricts the ability for scripts to decide who to cast what spells on.
              [ Parent ]
            • Re:The Only Winning Move by C0rinthian (Score:2) Wednesday November 15 2006, @03:06PM
          • Re:The Only Winning Move by KutuluWare (Score:1) Wednesday November 15 2006, @02:31PM
          • Re:The Only Winning Move by Andrew Kismet (Score:2) Wednesday November 15 2006, @03:38PM
          • Re:The Only Winning Move by Flendon (Score:2) Wednesday November 15 2006, @06:51PM
        • Re:The Only Winning Move by TheRaven64 (Score:1) Wednesday November 15 2006, @01:49PM
        • Re:The Only Winning Move (Score:5, Interesting)

          by TheRaven64 (641858) on Wednesday November 15 2006, @01:52PM (#16856202)
          (http://theravensnest.org/ | Last Journal: Sunday October 07, @07:05AM)
          This article [informit.com] discusses how to design a game where a human has an intrinsic advantage over a computer player. (Forgot to press preview last time).
          [ Parent ]
          • Re:The Only Winning Move by Shiny One (Score:1) Wednesday November 15 2006, @03:45PM
          • Re:The Only Winning Move by Broken scope (Score:2) Wednesday November 15 2006, @04:01PM
          • Re:The Only Winning Move by xenocide2 (Score:3) Wednesday November 15 2006, @04:06PM
          • Re:The Only Winning Move (Score:4, Insightful)

            by Jekler (626699) on Wednesday November 15 2006, @04:26PM (#16859328)

            One of the keys to avoiding cheats is that the game must be composed of mostly non-trivial, non-repetitive decisions.

            Almost every MMORPG is composed of completely trivial decisions. During a fight, at any given point in time there is a definite "right" decision to make, a definite order in which the character's abilities should be used, and a definite opponent that is optimal to attack. Buttering toast requires more difficult decisions than World of Warcraft has ever presented.

            Starsiege: Tribes never had a very successful bot created for it because the game requires the player to make decisions that a bot simply couldn't make quickly or predict accurately. In almost any scenario, there wasn't a dominant choice. You frequently had to choose among a range of equally attractive options, drawing only on past experience, intuitive knowledge of how physics works, and common sense about how people behave.

            [ Parent ]
        • Re:The Only Winning Move by mikael (Score:2) Wednesday November 15 2006, @02:00PM
      • Re:The Only Winning Move by Dunbal (Score:2) Wednesday November 15 2006, @01:13PM
      • Re:The Only Winning Move by Mike Micelli (Score:2) Wednesday November 15 2006, @01:32PM
      • 1 reply beneath your current threshold.
    • Assuming you're right... by gillbates (Score:3) Wednesday November 15 2006, @01:32PM
    • Re:My Guesses & Opinions (Score:5, Informative)

      by keytoe (91531) on Wednesday November 15 2006, @01:59PM (#16856316)
      (http://www.keeto.net/)

      Your analysis falls down when you consider that there have been no reports of any Mac users being targeted by this. There is no Warden process or anything resembling a rootkit on my system when I start up the client. Just one process: World of Warcraft. I suppose they could just be excepting any client that reports as being run on a Mac, but if that were the case, all of the people working to hack the system would just switch to running on a Mac. I suspect there is a bit more to the method that they're using and have heard rumors of them using things like 'multiple logins to the same account from different IPs' and other indicators. Perhaps the linux emulators are doing something that trips one of these other detection mechanisms.

      I believe that for the most part Blizzard is handling the cheating by making the client as dumb as possible and not trusting it for anything other than 'requests'. The design philosophy is centered around the client 'asking' to do something and the server saying 'yes' or 'no'. There isn't a way for the client to say 'Put this character at position x,y', there is only a way for a client to request to move along a vector. The server then reports the current position back to the client. That doesn't mean that hacks haven't ever happened - but those have been cases of the server not strictly following this model and are subsequently patched.

      Of course, this doesn't stop anybody from writing their own client that allows them to automate the request process given they were good enough to spoof being a 'real' client to the server.

      [ Parent ]
    • Re:My Guesses & Opinions (Score:4, Interesting)

      by crisco (4669) on Wednesday November 15 2006, @02:01PM (#16856352)
      (http://cothrun.com/)
      There is a wonderful set of slides from the BlackHat 2006 that outline the escalating war between the bot writers and Blizzard's Warden, culminating in the proposal to write a rootkit to hide the bot's activities from Warden: http://www.rootkit.com/newsread.php?newsid=543 [rootkit.com] If Blizzard is now looking for rootkit like behavior, or looking for specific signs of an existing rootkit, Cedega / Linux may very well raise all sort of red flags.
      [ Parent ]
    • Re:My Guesses & Opinions (Score:4, Insightful)

      by jrockway (229604) <jon-nospam@jrock.us> on Wednesday November 15 2006, @02:12PM (#16856562)
      (http://blog.jrock.us/ | Last Journal: Sunday October 10 2004, @04:11AM)
      > And how do you protect Warden from it itself being hacked? You design it kind of like a root kit--that is the user shouldn't be able to alter or disable Warden & they lose the domain over that tiny bit of functionality of their hard drive.

      That's trivial to get around. Run it under VMWare or qemu. Now the control of the user's machine is back in the hands of the user. When will people understand that you can't control software that's not entirely in your own hands?

      Anyway, the solution to this problem of being banned is trivial. Chargeback. As soon as they start losing money and their credit card processor starts asking questions, they'll start addressing their customer's complaints. If chargebacks don't work, take Blizzard to small claims court. Even if you lose, they'll still waste time and money sending their lawyers to defend themselves. Eventually they'll get the idea.

      Summary: You own your computer, not Blizzard. Money talks, letters don't.
      [ Parent ]
    • Re:Strong AI and the WoW Turing Test (Score:5, Insightful)

      by vertinox (846076) on Wednesday November 15 2006, @02:38PM (#16857064)
      (http://mp3bat.com/)
      Which brings me to one last point I'd like to make on this topic. I think that this cat n' mouse game of Blizzard versus the cheaters is good for AI. The last possible domain we have is people writing applications that extract data from video memory and use computer vision algorithms to write if-then-case bots.

      Correct, in 10-20 or so odd years the technology maybe available that is undetectable nor traceable by any server to find if a person is an AI or human.

      Lets say in 15 years you have on computer with WoW2 installed on it.

      On a second one that isn't even hooked up to the network you simply take the VGA/DVI output to it and then OCR the text states and by able to recognize objects in the virtual world much like Stanley's robot car is able to recognize objects on the road.

      Then your AI could simply feed the other computer commands through a USB keyboard.

      If the WoW client had sufficient DRM and rootkit abilities then perhaps it could detect such a hardware setup.

      But even then perhaps if you had a robotic arm and a camera giving the input making it impossible for another program to detect an AI.

      Suffice to say... It will be something Blizzard or any other game company can defeat unless they require game players to physically come to game centers.

      Even then... How would you know if the player didn't have an AI chip implanted in his skull? ;)
      [ Parent ]
    • Arms race is further along than you think. by lordtrickster (Score:1) Wednesday November 15 2006, @03:18PM
    • Re:My Guesses & Opinions by Zanthor (Score:1) Wednesday November 15 2006, @03:42PM
    • Re:My Guesses & Opinions by sowth (Score:1) Wednesday November 15 2006, @04:58PM
    • Re:My Guesses & Opinions by sineltor (Score:1) Wednesday November 15 2006, @06:03PM
    • Re:My Guesses & Opinions by DerekLyons (Score:2) Wednesday November 15 2006, @07:06PM
    • Bad Threat Model! by orospakr (Score:1) Thursday November 16 2006, @02:02AM
    • Re:My Guesses & Opinions by Alchemar (Score:2) Thursday November 16 2006, @09:59PM
    • Re:My Guesses & Opinions by nten (Score:1) Monday November 20 2006, @09:20AM
  • Poor Users (Score:4, Insightful)

    I do hope Blizzard will fix these users accounts. I don't currently play WoW on OSS platforms, but I plan on doing so in the future. It would be even better if they would make a Linux version of the game. Then again, I'd probably get caught "cheating" since I'd run it on BSD.

    I've seen this happen with PunkBuster checks in some games when you try to run then in another OS as well.
    • I used to run WoW in Cedega (Score:5, Interesting)

      by Kadin2048 (468275) <slashdot@kadin.xoxy@net> on Wednesday November 15 2006, @01:20PM (#16855590)
      (http://kadin.sdf-us.org/ | Last Journal: Tuesday October 16, @01:46PM)
      I used to play WoW via Cedega, before I just decided I didn't have enough time for games entirely, and I think this is too bad. If they had stopped me from using Cedega, it would have been my subscription.

      Actually, using it via Cedega worked really well once you got it working. I can't say it was "better than Windows," because I've never run Windows on that hardware (at least, not as the bare-metal OS, only in VMs), but it was a lot better than I imagined it would be when I started messing around with it.

      I think there are quite a few people who only use Cedega because of WoW, so I expect that the Cedega people will fix stuff pretty quickly, if the Blizzard folks will even tell them what the problem is and what Cedega is doing that Warden doesn't like.

      I think it's going to get to the point where "anti-cheats" and "copy protection" are the major things tying games to the Windows platform, because they're fundamentally hard (if not impossible) to implement on a Free OS, because the user -- by design -- can basically modify whatever they want, run debuggers, memory editors, etc.
      [ Parent ]
    • Re:Poor Users by amigabill (Score:1) Wednesday November 15 2006, @01:23PM
    • Re:Poor Users by toadlife (Score:2) Wednesday November 15 2006, @02:11PM
      • Re:Poor Users by laffer1 (Score:2) Wednesday November 15 2006, @02:19PM
    • Re:Poor Users (Score:5, Interesting)

      by ajs (35943) <ajs@aj s . com> on Wednesday November 15 2006, @03:15PM (#16857934)
      (http://www.ajs.com/~ajs/)
      I play WoW under wine (wine itself, not one of the commercial spin-offs) on Linux. I've never been banned. I've never gotten a note calling me a "bot".

      There is a long history of folks blaming wine for bannings in WoW, and I would wait to see exactly what happened here, before assuming that Blizzard has gone off the deep-end and started attacking those users who have clearly gone to great lengths to be able to run the game.

      PS: If you want to run WoW under Wine, here's what I did on my Fedora Core 5 system using an NVidia card with the binary NVidia drivers:
      • Started with this HOWTO for gentoo [gentoo-wiki.com]
      • Installed the stock FC5 (extras?) wine.
      • Built the patched version in my homedir as described in the HOWTO, but did not install it.
      • Installed Mozilla and the ActiveX extensions as described in the HOWTO.
      • Installed WoW from CD under wine as described.
      • Copied patch files from a Windows system, just to save download time.
      • Ran WoW, and allowed it to patch.
      • Tweaked sound settings as described.

      It now works fine. The only problems that I have are:
      • Sound pops from time to time when CPU is under load, especially if some other app competes for CPU against WoW. The suggested fixes on the HOWTO page failed to address this.
      • Some graphics glitches, mostly involving flashes in water that extends to the edge of the clip plane. This is mentioned in the HOWTO, I think, but there's no known fix for it that I'm aware of. Not a biggie for me.
      • Some key-combinations are not relinquished by the window manager even in non-windowed mode, and thus any WM-specific keys or mouse actions are not sent to the game. This is fixable, but I don't bother. I just avoid those keys, and I re-mapped the ones that I needed in the game.

      On the other hand the benifits are huge:
      • It's faster under Linux than it was under Windows, but not by much.
      • Switching from WoW to a desktop app is amazingly fast and painless. Major difference from Windows.
      • Applications that contend for memory and/or CPU while I'm playing don't appear to harm application performance nearly as much as under Windows, which given that this is both my game system and work-from-home-at-night system, is a major win.

      Overall, I love WoW under Linux. It's a joy compared to some made-for-linux games I've tried to run, and wine really seems to have come along.
      [ Parent ]
      • Re:Poor Users by ajs (Score:2) Wednesday November 15 2006, @03:40PM
      • Re:Poor Users by mvdwege (Score:2) Wednesday November 15 2006, @05:55PM
        • Re:Poor Users by king-manic (Score:3) Thursday November 16 2006, @05:51AM
      • Re:Poor Users by neclimdul (Score:1) Wednesday November 15 2006, @08:51PM
      • Re:Poor Users by IamTheRealMike (Score:3) Wednesday November 15 2006, @10:22PM
        • Re:Poor Users by ultranova (Score:2) Thursday November 16 2006, @04:01AM
          • Re:Poor Users by ajs (Score:2) Thursday November 16 2006, @10:14AM
        • Re:Poor Users by ajs (Score:2) Thursday November 16 2006, @10:12AM
      • Poor users of Cedega. by Inoshiro (Score:2) Wednesday November 15 2006, @11:30PM
      • Re:Poor Users by ajs (Score:2) Thursday November 16 2006, @10:39AM
      • 2 replies beneath your current threshold.
    • 1 reply beneath your current threshold.
  • by Anonymous Coward on Wednesday November 15 2006, @12:57PM (#16855204)
    Blizzard is about as customer-friendly as Sony.

    These guys really deserve being knocked down a notch or two. Unfortunately, with WoW being as popular as it is, there's not much chance of that happening for a few years yet.
  • Should be interesting (Score:4, Interesting)

    by Reapman (740286) <tdoerksen@@@gmail...com> on Wednesday November 15 2006, @12:58PM (#16855206)
    I run WoW in Linux, I only have one box for Windows and I don't want to be sitting at my windows laptop when I have a nice dual head display setup on my workstation with a better video card. If they ban me then so be it, there's money back per month for me. Usually the Blizzard guys are pretty good, so a bit disappointed if this is the path they are wanting to go.
  • Last night by guysmilee (Score:1) Wednesday November 15 2006, @01:00PM
  • by 8127972 (73495) on Wednesday November 15 2006, @01:00PM (#16855252)
    ..... Then the terrorists win.
  • No Wai !! by EGSonikku (Score:2) Wednesday November 15 2006, @01:01PM
    • Re:No Wai !! by Anonymous Coward (Score:1) Wednesday November 15 2006, @01:07PM
    • Re:No Wait !! by Tsunayoshi (Score:1) Wednesday November 15 2006, @01:09PM
      • Re:No Wait !! (Score:4, Funny)

        by Anonymous Coward on Wednesday November 15 2006, @01:16PM (#16855526)
        You have NOTHING to whine about. nada. zero. zip. People modded him as a troll. Deal with it. We have no responsibility to take how you read things into account. You can whine all you want about it not being fair, or how you have some 'right' to have everyone else read, but you don't. Slashdot moderators make moderations for slashdot readers. If you get it to read it, power to you. But if it stops being read, tough luck, it was never intended to be read anyway. You may as well complain to Nintendo about the quality of Snes9x.
        [ Parent ]
        • Re:No Wait !! by Tsunayoshi (Score:2) Wednesday November 15 2006, @01:23PM
          • 1 reply beneath your current threshold.
      • Re:No Wait !! by udderly (Score:3) Wednesday November 15 2006, @01:19PM
        • Re:No Wait !! by udderly (Score:2) Wednesday November 15 2006, @02:58PM
        • 1 reply beneath your current threshold.
      • Re:No Wait !! (Score:5, Funny)

        by LanMan04 (790429) on Wednesday November 15 2006, @01:22PM (#16855640)
        (http://www.highbiasentertainment.com/)
        Why did this get modded "Troll"? He has a point. If I had mod points I would upmod this...

        Would you rather it get modded Undead, Tauren, or Orc instead?
        [ Parent ]
        • Re:No Wait !! by Anonymous Coward (Score:1) Wednesday November 15 2006, @01:28PM
        • Re:No Wait !! by Anonymous Coward (Score:1) Wednesday November 15 2006, @01:55PM
      • Re:No Wait !! (Score:5, Insightful)

        by rpdillon (715137) on Wednesday November 15 2006, @01:42PM (#16855998)
        (http://etherplex.org/)
        "Why did this get modded "Troll"?"

        Umm, because he's wrong?

        Yes, I'm a die hard Linux user and gamer. But I am going to be as completely objective about this as I can be. The accounts are being *banned*. Which is to say: sure, if I try to run EQ2 (what I play instead of WoW) under Linux, and it works for a while and then breaks, all his points are valid. The problem then becomes that I can't go back to my Windows box and play from there. Why?

        Because they banned the *account*! It's not like I tried to get F.E.A.R. working and it didn't so "waaaaah, I have to play under Windows!" Rather, I tried to play under Linux and now, even though I paid for the right to play, I cannot play under Linux or Windows at all.

        Now, their nazi-EULA probably says they can terminate your *paid* account for whatever reason they want, but if you want to talk about whether there is something to "whine" about, there absolutely is. People's accounts should not be banned because they attempted to get their software working under an unsupported OS. That really is unfair.

        I cannot address whether or not any of this is FUD, however, since I don't play WoW and I stopped paying for Cedega. It seems odd that only some of the Cedega users are affected, but not all.
        [ Parent ]
        • Re:No Wait !! by Tsunayoshi (Score:2) Wednesday November 15 2006, @02:31PM
        • 2 replies beneath your current threshold.
      • Re:No Wait !! by cyber-vandal (Score:2) Wednesday November 15 2006, @01:45PM
      • 1 reply beneath your current threshold.
    • Re:No Wai !! by pslam (Score:2) Wednesday November 15 2006, @01:10PM
    • Re:No Wai !! by EmperorKagato (Score:2) Wednesday November 15 2006, @01:13PM
      • Re:No Wai !! by Zondar (Score:3) Wednesday November 15 2006, @01:20PM
        • Re:No Wai !! by Zondar (Score:2) Wednesday November 15 2006, @01:29PM
        • Re:No Wai !! by chris_eineke (Score:2) Wednesday November 15 2006, @03:14PM
          • Re:No Wai !! by Rakarra (Score:2) Wednesday November 15 2006, @03:22PM
      • Re:No Wai !! by Net_fiend (Score:1) Wednesday November 15 2006, @02:12PM
      • Re:No Wai !! by Rakarra (Score:2) Wednesday November 15 2006, @03:36PM
        • Re:No Wai !! by EmperorKagato (Score:2) Wednesday November 15 2006, @03:59PM
        • Re:No Wai !! by sowth (Score:1) Wednesday November 15 2006, @05:31PM
    • Re:No Wai !! by HermMunster (Score:2) Wednesday November 15 2006, @01:18PM
    • Re:No Wai !! (Score:5, Insightful)

      by 91degrees (207121) on Wednesday November 15 2006, @01:18PM (#16855552)
      (Last Journal: Friday June 11 2004, @11:15AM)
      No. People have every right to complain. Blizzard are behaving reprehensibly. They're banning a load of users and accusing them of cheating for no reason other than their decision not to use Windows.

      Their customers want to use Linux. If they are not going to take account of thios then they will be publicly criticised. The affected users have ewvery right to complain.
      [ Parent ]
      • Re:No Wai !! by autismuk (Score:1) Wednesday November 15 2006, @01:30PM
      • Re:No Wai !! by onepoint (Score:1) Wednesday November 15 2006, @01:57PM
        • Re:No Wai !! by 91degrees (Score:1) Wednesday November 15 2006, @02:44PM
      • Re:No Wai !! by brkello (Score:2) Wednesday November 15 2006, @03:10PM
        • Re:No Wai !! by 91degrees (Score:1) Wednesday November 15 2006, @03:59PM
          • Re:No Wai !! by 91degrees (Score:1) Thursday November 16 2006, @03:26AM
          • 1 reply beneath your current threshold.
    • Re:No Wai !! (Score:5, Informative)

      by HermMunster (972336) on Wednesday November 15 2006, @01:29PM (#16855768)
      Blizzard has worked with the people at Cedega to make the product work properly. One known issue they helped the linux community with was when the mini map used to cause the screen to freak out. The Cedega team worked with the Blizzard developers to come up with the solution to the problem.

      Don't say that it isn't supported. No, officially it is not, but it is unofficially.

      As for him being modded as a troll--it would seem he is a troll. He is speaking out his arse without any knowledge nor history on the subject.
      [ Parent ]
      • Re:No Wai !! by Dhalka226 (Score:2) Wednesday November 15 2006, @02:01PM
      • Re:No Wai !! by pilkul (Score:2) Wednesday November 15 2006, @02:39PM
        • Re:No Wai !! by aztracker1 (Score:2) Wednesday November 15 2006, @04:23PM
      • Re:No Wai !! by 91degrees (Score:1) Wednesday November 15 2006, @05:55PM
      • Re:No Wai !! by HermMunster (Score:3) Wednesday November 15 2006, @10:01PM
      • Re:No Wai !! by HermMunster (Score:2) Wednesday November 15 2006, @09:27PM
      • 1 reply beneath your current threshold.
    • Re:No Wai !! by pslam (Score:1) Wednesday November 15 2006, @01:57PM
    • Re:No Wai !! -- Not quite the same thing by secret_squirrel_99 (Score:2) Wednesday November 15 2006, @01:58PM
    • Re:No Wai !! by Turn-X Alphonse (Score:2) Wednesday November 15 2006, @02:00PM
    • Re:No Wai !! by schobes (Score:1) Wednesday November 15 2006, @02:05PM
      • Re:No Wai !! by 91degrees (Score:1) Wednesday November 15 2006, @05:59PM
    • Re:No Wai !! by Rockinsockindune (Score:1) Wednesday November 15 2006, @02:38PM
    • Re:No Wai !! (Score:5, Insightful)

      by Ephemeriis (315124) on Wednesday November 15 2006, @06:02PM (#16861070)
      (http://chris.sartoris.org/)
      You people have NOTHING to whine about. nada. zero. zip.

      You are using it on a non-supported platform. Deal with it.
      Blizzard has no responsibility to take how Cedega does things
      into account. You can whine all you want about it not being fair,
      or how you have some 'right' to play it on your Linux enabled
      toaster, but you don't.

      Blizzard makes the game for Windows. If you get it to work in
      Linux, power to you. But if it stops working, tough luck, it
      was never intended to work anyway. You may as well complain to
      Nintendo about the quality of Snes9x.

      You're missing the point.

      This isn't a problem with support. It isn't a matter of whether WoW.exe will run or not - it does run under WINE/Cedega. The issue is that Blizzard is closing game accounts. You can still run the program, you just can't log in to your account. Doesn't matter if you reformat and reload your machine with Windows or MacOS to appease Blizzard, you can still run the program, you still can't log in to your account. Worse, the account is being closed because of cheating. That's what it'll say in your account details - hacking/cheating. Not "didn't pay his bill", but "caught running cheat/hack program". Much harder (impossible?) to get such an account re-activated.

      My bank doesn't support Firefox on Linux for viewing my balance on-line. They have a list of supported browsers and operating systems and Firefox/Linux just isn't on it. Because of that I will not be surprised if I cannot view my balance on their website...I will not be surprised if the page renders incorrectly or isn't functional - it isn't a supported platform. That's fine. I'll go view my balance on an IE6/Windows machine instead. But I most certainly will complain if they close my bank account because I tried to view my balance with Firefox/Linux.
      [ Parent ]
    • Re:No Wai !! by El Torico (Score:2) Wednesday November 15 2006, @01:51PM
      • Re:No Wai !! by udderly (Score:2) Wednesday November 15 2006, @02:04PM
        • Re:No Wai !! by drinkypoo (Score:2) Wednesday November 15 2006, @03:01PM
          • Re:No Wai !! by udderly (Score:2) Wednesday November 15 2006, @03:14PM
            • Re:No Wai !! by Rakarra (Score:2) Wednesday November 15 2006, @03:27PM
              • Re:No Wai !! by udderly (Score:2) Thursday November 16 2006, @08:40AM
          • Re:No Wai !! by El Torico (Score:2) Wednesday November 15 2006, @03:29PM
    • 3 replies beneath your current threshold.
  • WoW & Ubuntu (Score:3, Informative)

    by Anonymous Coward on Wednesday November 15 2006, @01:02PM (#16855278)
    There's a Wine package for Ubuntu that fixes a couple of bugs associated with WoW. The howto can be found on the excellent Ubuntu wiki at https://help.ubuntu.com/community/WorldofWarcraft [ubuntu.com] and details the instructions. It's pretty much a download the package and double click it, then run 'wine WoW.exe -opengl'. This ban rumor pops up periodically but I have yet to encounter any problems.
    • Re:WoW & Ubuntu by Terrasque (Score:1) Wednesday November 15 2006, @02:40PM
      • Re:WoW & Ubuntu by zoward (Score:2) Wednesday November 15 2006, @05:29PM
      • 1 reply beneath your current threshold.
  • Not just the U.S. servers (Score:3, Informative)

    by Turmoyl (958221) on Wednesday November 15 2006, @01:02PM (#16855286)
    New information in the thread on the TransGaming forums linked in the original article shows that European Cedega users that play on European WoW servers are affected as well.
  • Cheating is bad for their community (Score:5, Insightful)

    by erroneus (253617) on Wednesday November 15 2006, @01:02PM (#16855292)
    (http://slashdot.org/)
    If cheating were to go on unabated, the WoW community would shift away to something else. They are trying to tend to their interests and I can't blame them.

    What should have happened? Well, for one, someone from the Cedega project who also uses WoW (chances are pretty good) should get into communication with the Blizzard people in order to work out any issues. Allowing people to use Linux while playing WoW is certainly in Blizzard's interest and since Cedega is doing the bulk of the work, I can't imagine why Blizzard wouldn't at least come to the table to work it out. Cutting users off is likely the side-effect of an automated process not seeing what it expects to see and not some assault on Linux users.
  • Not at all surprised... (Score:5, Insightful)

    by Svartalf (2997) on Wednesday November 15 2006, @01:03PM (#16855312)
    (http://www.earlconsult.com/)
    For anyone that thinks Cedega's (or WINE, for that matter...) anything other than a good short-term solution to
    Linux gaming, all I need do is point them to this as a good example of why it's not so hot of an idea. And it's
    perfectly within Blizzard's rights to do this action- to the point of ignoring any contact with regards to this
    whole affair. Doesn't make it good for PR or customer relations, mind- but it's completely within their rights
    to do so. After all, they only support Windows on this title and don't have plans to provide support to other
    OS platforms. Again, which is their right.

    Native ports wouldn't have as many of these issues.

    As for the whole affair... It's Blizzard. They've apparently got a singular attitude about Linux users that
    started with the period around Starcraft forward. I wouldn't buy any title from them right now and for some
    while to come- you just don't treat customers or potential customers the way they seem wont to do.
  • No. (Score:3, Informative)

    by keyne9 (567528) on Wednesday November 15 2006, @01:11PM (#16855456)
    I use linux, and I was not banned. Could we calm the knee-jerk reactions just a bit?
    • Re:No. by east coast (Score:2) Wednesday November 15 2006, @01:21PM
    • 1 reply beneath your current threshold.
  • by -Neko- (67564) on Wednesday November 15 2006, @01:12PM (#16855458)
    (http://www.genesi-usa.com/)
    Once they get their heads around the next expansion why not start on a real Linux port? Linux is definitely growing in popularity. Blizzard could do well in mindshare alone by creating - even if it is just an authorized version to play through Cedega - a real Linux version, rather than having people run through a relatively unauthorized emulation system which can cause quirks with their weird anti-bot stuff.
  • A bit more (still no) (Score:5, Informative)

    by keyne9 (567528) on Wednesday November 15 2006, @01:15PM (#16855496)
    Drysc [worldofwarcraft.com] (Blizzard poster) confirmed that "[a]n operating system would not produce a false positive[...]." So, no. This does not appear to be targetting linux/alternate OSes.
    • wrong by SEAL (Score:2) Wednesday November 15 2006, @05:19PM
      • Re:wrong by GooberToo (Score:2) Wednesday November 15 2006, @06:40PM
        • 1 reply beneath your current threshold.
  • Lets try some logic. (Score:5, Interesting)

    by Kenja (541830) on Wednesday November 15 2006, @01:19PM (#16855574)
    Windows users got banned. Linux users got banned. Not all Windows users got banned. Not all Linux users got banned. Could it be that the banned Linux users where doing somthing byond just using Linux?

    Naw, cant be.
    • Re:Lets try some logic. by Mister Whirly (Score:2) Wednesday November 15 2006, @03:13PM
    • Re:Lets try some logic. (Score:5, Insightful)

      by Rakarra (112805) on Wednesday November 15 2006, @03:16PM (#16857954)
      My theory is that on Fri Oct 27 Blizzard made a change serverside to their warden program. At that point every user using cedega had the game crash.. over and over until Transgaming fixed the issue. I have a feeling that during those Warden-related crashes (Blizzard reps have said that game crashes like that are often a symptom of bots and software that tries to hack the game) a number of accounts were incorrectly flagged.

      Two of my coworkers were banned. Again, no pirated or hacked software, no dodgy addons. These were innocents.

      A disturbing trend during this whole thing has been the attitude from those who weren't banned that if you were accused of something.. well, obviously you must be guilty of the accusation.

      [ Parent ]
    • 1 reply beneath your current threshold.
  • crap... by oxpecker (Score:1) Wednesday November 15 2006, @01:21PM
    • Re:crap... by Red Flayer (Score:2) Wednesday November 15 2006, @02:05PM
    • Re:crap... by iDope (Score:1) Wednesday November 15 2006, @02:14PM
    • Re:crap... by TheCabal (Score:2) Wednesday November 15 2006, @02:28PM
    • Re:crap... by Trolan (Score:1) Wednesday November 15 2006, @02:43PM
    • But in the meantime, by Desert_Scarecrow (Score:1) Wednesday November 15 2006, @04:21PM
  • who cares? by minus_273 (Score:2) Wednesday November 15 2006, @01:22PM
    • Re:who cares? by pslam (Score:1) Wednesday November 15 2006, @01:45PM
    • Re:who cares? by EmperorKagato (Score:2) Wednesday November 15 2006, @01:47PM
    • Re:who cares? by joe 155 (Score:2) Wednesday November 15 2006, @01:52PM
      • Re:who cares? by Zondar (Score:2) Wednesday November 15 2006, @02:12PM
        • Re:who cares? by Pofy (Score:2) Thursday November 16 2006, @10:00AM
      • Re:who cares? by normal_guy (Score:2) Wednesday November 15 2006, @02:27PM
    • Re:who cares? by Anonymous Coward (Score:3) Wednesday November 15 2006, @01:52PM
    • 1 reply beneath your current threshold.
  • WoW by certel (Score:2) Wednesday November 15 2006, @01:23PM
  • Read the sig! by Enrique1218 (Score:2) Wednesday November 15 2006, @01:26PM
  • I'm a Linux user (Score:3, Interesting)

    by SQLz (564901) on Wednesday November 15 2006, @01:26PM (#16855700)
    (http://www.linuxplatform.org/ | Last Journal: Tuesday December 16 2003, @04:31PM)
    I boot to Windows to play because my first account was banned for no reason when I was using Winex. Luckily, it was banned before I even reached level 10, although it pissed me off I just started another account. Noone ever responsed to my emails or anything.
  • Do it the fair way by xant (Score:2) Wednesday November 15 2006, @01:27PM
  • In other news... (Score:5, Funny)

    by copponex (13876) on Wednesday November 15 2006, @01:27PM (#16855716)
    (http://slashdot.org/)
    The Linux community has pushed up the expected release date of kernel 2.8 by two full years.
  • It's probably for the better by Anonymous Coward (Score:2) Wednesday November 15 2006, @01:28PM
  • To Blizzard. by Anonymous Coward (Score:2) Wednesday November 15 2006, @01:31PM
  • I Am Amazed... by Nom du Keyboard (Score:2) Wednesday November 15 2006, @01:33PM
  • no answers by alexhard (Score:2) Wednesday November 15 2006, @01:38PM
    • Re:no answers by Freymour (Score:2) Wednesday November 15 2006, @02:02PM
  • Old news (Score:4, Funny)

    by crossmr (957846) on Wednesday November 15 2006, @01:42PM (#16856002)
    (Last Journal: Thursday February 15 2007, @08:40PM)
    I can remember this being talked about months ago, people were getting these letters and they were running WoW under wine.
    Slashdot at 11, we put a man on the moon.
  • A few updates and corrections. (Score:4, Interesting)

    by Rakarra (112805) on Wednesday November 15 2006, @01:46PM (#16856086)
    First, Blue Poster Drysc says that Linux shouldn't be an issue, when asked if the people were banned for playing under Linux:

    An operating system would not produce a false positive, no.

    As a final word to those here concerning their account being closed I can only recommend that you contact our Account Administration team by e-mailing wowaccountadmin@blizzard.com which is also included in the e-mail you should have received.

    ...

    As I said we take enormous steps to ensure that those we remove from the game are specifically and properly confirmed as being in violation of our rules and agreements before doing so. I still urge those of you who feel you have been wrongfully banned to contact our Account Administration team.

    Now, I have two co-workers who were banned who I know don't run bot clients, cheat programs, or anything of the sort. They do run cedega though.

    Some people have mentioned that they weren't playing on Linux at the time of the ban but that they were actually on Windows. This doesn't really matter though as the GMs and CMs have said that they don't ban clients as they are individually discovered but rather they build up a large list and weild the ban hammer at once. So, if you were banned it may not have been for actions you were taking at the time of the banning, but instead could have been for something that happened a month ago. My instinct is to blame the period around October 29 when Blizzard made a change to their warden on the server side and it caused all cedega clients to crash upon login. Two days later Transgaming released a fix, but I wonder if a number of clients were incorrectly flagged for those warden-related crashes.

    Also, if you were not banned it doesn't mean that your account hasn't been flagged, correctly or incorrectly.

  • WoW & Linux by dokhebi (Score:1) Wednesday November 15 2006, @01:51PM
    • Re:WoW & Linux by Zombie Ryushu (Score:1) Wednesday November 15 2006, @02:49PM
    • Re:WoW & Linux by Stormy Dragon (Score:1) Wednesday November 15 2006, @03:29PM
    • 1 reply beneath your current threshold.
  • What's the problem? by Anonymous Coward (Score:1) Wednesday November 15 2006, @01:58PM
    • 1 reply beneath your current threshold.
  • One of my good friend got banned for this by doomy (Score:2) Wednesday November 15 2006, @01:58PM
  • The Simple Solution by gotamd (Score:1) Wednesday November 15 2006, @02:00PM
  • Boo Frickin Hoo by rickmus (Score:1) Wednesday November 15 2006, @02:12PM
  • It was fun while it lasted. by mw13068 (Score:1) Wednesday November 15 2006, @02:13PM
  • Other random bans... by Echo5ive (Score:2) Wednesday November 15 2006, @02:17PM
  • by Rix (54095) on Wednesday November 15 2006, @02:18PM (#16856706)
    I played WoW under Cedega with no problems, and I confirmed with a GM that it was kosher. I suspect that most, if not all, of these bannings are legitimate. Cheaters don't usually break down and admit it when caught.
    • 1 reply beneath your current threshold.
  • Here's my 2 cents by WhiteWolf666 (Score:2) Wednesday November 15 2006, @02:19PM
  • Similar to complaining about crack smoke? by evildarkdeathclicheo (Score:1) Wednesday November 15 2006, @02:20PM
  • bait and switch. by ngworekara (Score:2) Wednesday November 15 2006, @02:35PM
  • is it only Cedega users ? by Tabini (Score:1) Wednesday November 15 2006, @02:45PM
  • How far? by Kaenneth (Score:2) Wednesday November 15 2006, @02:48PM
  • Blizzard Response on Cedga by doomy (Score:2) Wednesday November 15 2006, @02:49PM
  • More Blizzard follow-up (Score:5, Informative)

    by keyne9 (567528) on Wednesday November 15 2006, @03:00PM (#16857588)
    http://forums.worldofwarcraft.com/thread.html?topi cId=47009071&pageNo=3&sid=1#40 [worldofwarcraft.com] http://forums.worldofwarcraft.com/thread.html?topi cId=47009071&sid=1&pageNo=3#53 [worldofwarcraft.com] "We have been testing our security software with Cedega. Cedega was used and tested before the security procedures and during the security procedures. From this testing we have yielded no hits, meaning Cedega, by itself, does not incur an account suspension. We have accounts of several Cedega users who have been playing normally during the time that these processes are running. Again, these people are not being suspended simply because of using Cedega or Linux. We are in contact with the people at Cedega and following up with them regarding individual accounts. To answer the OP's question, no it is not against the ToS to use Linux or Cedega. We continue to monitor the situation to prevent cases of false positives and to rectify them if they do occur." - Tseric (Blizzard poster) Again, less knee-jerk reactions.
  • Reply to quote by Orbit.de (Score:1) Wednesday November 15 2006, @03:02PM
  • Linux gives better performance! by whoop (Score:1) Wednesday November 15 2006, @03:08PM
  • The eternal struggle by RomulusNR (Score:2) Wednesday November 15 2006, @03:12PM
  • OMG IT'S THE END OF THE WORLD!! by Danzigism (Score:2) Wednesday November 15 2006, @03:37PM
  • I got banned, and I run windows XP. by Anonymous Coward (Score:1) Wednesday November 15 2006, @04:10PM
  • Refund? by ngworekara (Score:1) Wednesday November 15 2006, @04:15PM
  • How in the heck... (Score:3, Insightful)

    How would running WoW under Cedega look like Glider or any other botting software? Maybe it's just Warden working funky, but something just seems very off here. It doesn't surprise me, Blizzard acting first and thinking later. If it's any consolation to those banned, you'll probably get your accounts back in a couple weeks...

    Might help to make a big stink about it in the meantime though.
  • Blizzard is currently working with TransGaming by Setral (Score:1) Wednesday November 15 2006, @04:20PM
  • The scammers are scamming slashdot (Score:4, Interesting)

    by WallyGrump (848105) on Wednesday November 15 2006, @05:10PM (#16860116)
    This is the site where all the scammers are crying about their bans.
    http://forums.wowglider.com/forum.asp?FORUM_ID=16/ [wowglider.com]
    This is a program that automates warcraft. Blizzard can no doubt just cough up $25 and get themselves a copy. People on this slashdot aren't stupid. If blizzard had access to the program and warden has full access to the operating system then nothing can hide. If it tries to hide, blizzard can reverse engineer the thing and find how it hides. No false positives, no mixing up linux users - they can without doubt target such a program. No need for blizzard to seek out strange memory access or whatever - they can just go straight for the program.

    The thing is many people put years of work into their characters and have been caught cheating. Now they're trying to scam their way out of their problems - like theyve scammed their way through the game. Don't beleive these idiot posters.
  • Possible reason for banning only some (Score:3, Interesting)

    by Azureflare (645778) on Wednesday November 15 2006, @05:30PM (#16860456)
    I remember back when I played WoW in Cedega on linux that if I played the game in fullscreen mode but put in managed mode and set the desktop to a value less than my desktop resolution, then World of Warcraft would essentially run in a windowed screen but think it was fullscreen. This was immensely useful if I wanted to read something while grinding for instance. However, I distinctly remember that if I held down the right click button while inside the game and didn't release it and moved my mouse really quickly to the side, the game would slow down immensely, and then send me back to the login screen. I believe something about how cedega sends signals to the client when it is in managed mode made the World of warcraft client freak out and think something weird was happening.

    Can anyone who got banned comment on this? Were you playing the game in managed mode rather than fullscreen in Cedega, or was it unmanaged and in fullscreen mode?
  • Update by ngworekara (Score:1) Wednesday November 15 2006, @05:34PM
    • Re:Update by Dewser (Score:1) Thursday November 16 2006, @11:43AM
  • Cover up by agrovated (Score:1) Wednesday November 15 2006, @05:57PM
  • Many people play under linux (Score:3, Interesting)

    by Fizzlewhiff (256410) <jeffshannonNO@SPAMhotmail.com> on Wednesday November 15 2006, @07:26PM (#16862274)
    (http://newspinions.com/)
    Many players run under Linux and have not been banned. Many people who have been banned for botting claim they have not been botting. Very few people who get caught cheating ever admit to it. I have a hard time believing this story.
  • all about the $ by worldrocker (Score:1) Wednesday November 15 2006, @07:48PM
  • Well there may be other possibilities. by anduz (Score:1) Wednesday November 15 2006, @08:18PM
  • Banned by agrovated (Score:2) Wednesday November 15 2006, @10:13PM
  • My wifes account... by CasperIV (Score:1) Wednesday November 15 2006, @11:11PM
  • Misspelled tag? by julesh (Score:2) Thursday November 16 2006, @03:56AM
  • WoW with wine by Jairun (Score:1) Thursday November 16 2006, @06:13AM
  • Linux Client for WOW by AnXa (Score:1) Thursday November 16 2006, @07:30AM
  • The Story of a Cheater by Jekler (Score:1) Thursday November 16 2006, @08:32AM
  • Just force The Warden to live in a Virtual by Il128 (Score:1) Thursday November 16 2006, @11:19AM
  • Why you were banned by agrovated (Score:1) Thursday November 16 2006, @06:56PM
  • (no subject) by Red Machine D (Score:1) Thursday November 16 2006, @08:29PM
  • Re:Purely An Art Issue (Score:4, Funny)

    by Apocalypse111 (597674) on Wednesday November 15 2006, @01:00PM (#16855238)
    (Last Journal: Monday December 04 2006, @04:08PM)
    No, but you can get bearded GNOME freaks...
    [ Parent ]
  • Re:Glad I left months ago... by MrPink2U (Score:1) Wednesday November 15 2006, @01:09PM
  • Re:Anti-cheat is NOT spyware by jimstapleton (Score:2) Wednesday November 15 2006, @01:27PM
  • Re:And this is a bad thing because? by badenglishihave (Score:2) Wednesday November 15 2006, @01:36PM
  • Re:And this is a bad thing because? by weinerofthemonth (Score:2) Wednesday November 15 2006, @01:41PM
    • 1 reply beneath your current threshold.
  • Re:WoW -- failing due to its success by pslam (Score:1) Wednesday November 15 2006, @01:53PM
  • Re:Anti-cheat is NOT spyware by chrismcdirty (Score:2) Wednesday November 15 2006, @01:57PM
  • Re:WoW -- failing due to its success by dknight (Score:2) Wednesday November 15 2006, @02:07PM
  • Re:WoW -- failing due to its success by feyhunde (Score:2) Wednesday November 15 2006, @02:09PM
  • Re:Serves them right traitors by Zondar (Score:2) Wednesday November 15 2006, @02:39PM
  • Re:Serves them right traitors by brkello (Score:2) Wednesday November 15 2006, @03:01PM
    • 1 reply beneath your current threshold.
  • Re:Serves them right traitors by mr.mighty (Score:1) Wednesday November 15 2006, @05:13PM
  • 29 replies beneath your current threshold.