Multiple IP Signup Prevention
2006.Sep.17, 10:36 PM
Re: Multiple IP Signup Prevention.
Post: #3
Dragon Wrote:In order to stop people from signing up for another account with the same IP, why not just add a piece of code like this to the signup page...

$ip = $_SERVER['REMOTE_ADDR'];
$query = mysql_query("SELECT * FROM `User` WHERE Signup IP='$ip'");
$rows = mysql_num_rows($query);
if($rows<0){
normal code...
}else{
echo"I'm sorry, but the IP ($ip) has already been used.";
}

Then, once that the people that haven't signed up have signed up for an account, then just use a query to insert their IP in to the table, so that if they try to signup again, they won't be able to.

It just doesn't make sense to allow people to signup again on the same IP, when you could just simply stop them from doing so. That would probably save Zenith some time checking the database for multiple IP addresses and while doing this, also allowing Zenith to use that saved time for more on the development on this game.

First off Dragon, I appreciate the input. I'm glad you are involved enough with our community to try and help.

What LuparKoor says is pretty much how we look at the situation. If we didn't allow people to sign-up from an IP address more than once, we'd be missing some quality players. Many of our players are real-life friends, and play from work.

While I'd love to prevent cheaters from signing up, that's a perfect world. I'd rather miss a few cheaters than miss some quality players signing up. Usually the cheaters get caught over time.

Most cheaters I catch nowadays are using multiple IPs. I agree with you Dragon, I'd rather spend more time developing than sniffing out cheaters, but since these types of games are so popular there will be cheaters jumping from game to game trying to outwit the code.

Unlike most of the games out there, we actually survive well with minimal staff thanks to some coding efforts by myself and Err. We track every IP a player uses since creation, and it's getting easier to find the bad apples.

As for the code you posted, that would actually result in no one ever being able to sign-up since the else clause would always be true. $rows would always be zero or greater. You'd probably want something like the following:
Code:
if ( $rows > 0 ){
     echo "I'm sorry, but the IP ($ip) has already been used.";
} else {
     normal code...
}

If you have any ideas on where we could use a current or formerly used IP check to prevent game mechanics from being exploited, I am all ears. There are several areas this is used that most players have no idea about since it never affects them.

Zenith [2]
Game Creator and Admin


Messages In This Thread
Multiple IP Signup Prevention - Dragon - 2006.Sep.17, 04:38 PM
[] - LuparKoor - 2006.Sep.17, 09:16 PM
Re: Multiple IP Signup Prevention. - zenith - 2006.Sep.17 10:36 PM
[] - Dragon - 2006.Sep.18, 07:41 AM