How World of Warcraft idiots interact with multiboxers
This article is a little off from the theme of my blog. I didn’t really search for anything, except maybe intelligent players in WoW. You can read some of the responses on the Dual-Boxing Forums and the Official WoW Forums.
The Problem
Unfortunately, World of Warcraft is full of immature idiots and spoiled children. In spite of all the intelligent, considerate players in the game, they really start to come out of the woodwork when something unusual is going on. Like another player who is multiboxing. Any time I go to a populated area I am constantly harassed by these like. Here are some of the common types of idiots I interact with as a multiboxer.
The Genius
This player knows you’re doing something wrong and breaking the rules, and they’re going to tell you about it. It’s cheating, botting, or some other offensive abomination of gameplay. When I first started to get these idiots, I would try to educate them about the legitimacy of multiboxing.
However, I have never been able to get anything across to them. So now to handle these geniuses, I simply tell them to report me if they are so damn smart. I wish I could watch their conversations with the GM.
Anti Spam Image Generator
Anti-spam Image Generator will render PNG image with code to protect your blog/comments/feedback section from spammers and bots (known as CAPTCHA). Requirements:
- PHP >4.0.6
- GD 2.0.1 or later
- TTF font to use for rendering code. By default it uses arial.ttf. You can find it online.
- You can define characters set to use (by default 0123456789abcdefghijklmnopqrstuvwxyABCDEFGHIJKLMNOPQRSTUVWXYZ)
- Customizable code length (default is 4)
- Easy to use / light server load, not overloaded with features
Sample usage:
- Add this html code where you want to place antispam image: <img src=”http://www.website.com/path/to/antispam.php”>
- Add field to the html form to enter code, name it anti_spam_code: <input name=”anti_spam_code”>
- Add following check in the php code to check if user entered CAPTCHA correctly:
@session_start(); // start session if not started yet
if ($_SESSION['AntiSpamImage'] != $_REQUEST['anti_spam_code']) {
// set antispam string to something random, in order to avoid reusing it once again
$_SESSION['AntiSpamImage'] = rand(1,9999999);
// here you add code to let user know incorrect code entered
…
}
else {
// set antispam string to something random, in order to avoid reusing it once again
$_SESSION['AntiSpamImage'] = rand(1,9999999);
// everything is fine, proceed with processing feedback/comment/etc.
…
}


