Jump to content
MakeWebGames

muttis


grant

Recommended Posts

need help am trying to stop muttis on my game but the code i have dont seem to be working any help would be great

 


$checkip = mysql_query("SELECT * FROM `grpgusers` WHERE `ip`='$ip'");


 $ip_exist = mysql_num_rows($checkip);

 if($ip_exist > 0){
$message .= "<div>I'm sorry but you already have an account with this Game</div>";
 }
Link to comment
Share on other sites

You cannot completely stop the issue, as even if you put a cookie on the browser with some ID then nothing prevent the user to use 2 different browsers etc. What you can do is to have several strategies to catch those behaviors not just one.

- IP check

- Cookie with ID

- Invisible flash or silverlight which store an ID (would be shared across all browsers)

And if one of the 3 strategies fires up an alarm, do some manual checks.

Also, huge transfers for free (so no counter part) between 2 users should rise an alarm as well.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...