This is too great... I changed some of the numbers a little so that it's not so obvious that we're messing with the guy, and I set it up so that it effects his whole IP range, rather than just his username(s)...
To do that, I just copied the global part of the hack (between the if statements) into the checkipban() function in the functions.php file... quote out the eval for the normal error_ipban and we're all set. It's great, man. I laughed for hours.
To keep from making it too obvious, I changed the if glitch numbers down a bit. For example:
Code:
$glitch = rand(0,100);
if($glitch < 50) {
eval("standarderror(\"".gettemplate('error_toobusy')."\");");
exit;
}
Will give the error 50% of the time. As opposed to:
Code:
$glitch = rand(0,100);
if($glitch < 80) {
eval("standarderror(\"".gettemplate('error_toobusy')."\");");
exit;
}
Which would do it 80% of the time.