Then something like:
<?PHP
if (in_array($_SERVER['REMOTE_ADDR'], array('127.0.0.1','123.123.123.123','10.10.0.0'))) {
echo 'You are banned.';
exit();
}
?>
at the top of all your pages could stop them, but like I said, it's a pretty easy thing to get around.