Um, there was a script so it can be 1 ip per user. Ill have a look for you
This is a discussion on 3 Accounts Per IP within the Habbo Releases forums, part of the Habbo Hotel category; Hey... I'm just wondering if anybody could help me.. I'm using zCMS and I want to make it so it's ...

Um, there was a script so it can be 1 ip per user. Ill have a look for you
Last edited by JohnHearfield; 18-11-11 at 07:51 PM.
Place this inside your virtual directory /register.php
PHP Code:if (LOGGED_IN)
{
header("Location: " . WWW . "/me");
exit;
}
$checkUser = dbquery("SELECT * FROM users WHERE ip_reg = '" . $_SERVER['REMOTE_ADDR'] . "'");
$userAmount = mysql_num_rows($checkUser);
if($userAmount >= 3)
{
die('<center><font face="verdana">Access denied. You may not have more than 3 accounts.');
}
thanks Muscab
PHP Code:<?php $sql = mysql_query("SELECT * FROM users WHERE ip_last='$_SERVER[REMOTE_ADDR]'");
if(mysql_num_rows($sql) > 0) {
echo '<script type="text/javascript">
<!--
alert ("Stop Making accounts kid.")
// -->
</script>';
echo'<script type="text/javascript">
window.location = "/index.php"
</script>';
die;
}
?>
/register/index.php
Put it below the ?> after the global.php thing