vote up 3 vote down star
2

Possible Duplicate:
Prevent users from starting multiple accounts?

Imagine you develop a free to play multiplayer game. It is free to create an account. Now, having multiple accounts would give the user an unfair advantage to other players because they can develop multiple characters and transfer in game valueable items to their so called "main character".

My question is, what methods do you know to prevent people from having multiple accounts?

I currently have the following ideas, but having just these will not suffice:

  • Require unique e-mail address for each account with activation (not helpful with these trash mail services)
  • Disallow multiple clients at a time on a machine (people can reverse engineer the client to pass this check, or simply use multiple machines or virtual operating systems)

Maybe it is an idea to use somekind of service like OpenID? I have no experience with this, it just came up in my head as a slight possibility. I do not know how difficult it would be to create multiple OpenIDs either.

I'd love to hear more suggestions from the SO community.

flag

Exact Duplicate: stackoverflow.com/questions/170152/… – Justin Niessner Oct 30 at 20:44
5  
Not a dupe. Games are not the same as blogs and require (partly) different techniques. – finnw Oct 30 at 21:00
Good idea with the OpenIDs - of course it's possible to create as many OpenIDs as you like, but less streamlined today than creating throwaway email addresses – orip Oct 30 at 21:04
1  
I also agree that this isn't a duplicate. Superficially the problems are the same, but the reasons to create accounts for a weblog are generally more Internet-Search-Engine related, while the reasons to create accounts for a free online game are more "cheat for more fun" related. As such, in the former you fend of automated bots trying to spam, and the latter you fend off warm bodies trying to outpace other players. I think the implication is that the solution lies more in social engineering tactics than in any programming solution, though. – Tchalvak Nov 4 at 2:43
I am in peace with the closure, as the answer has been given and accepted regardless. Though personally, I don't think my question is a duplicate of the one linked above. – Tom Nov 4 at 15:13

closed as exact duplicate by Justin Niessner, David Caunt, Tom Ritter, Claudiu, ChssPly76 Oct 30 at 22:54

8 Answers

vote up 3 vote down check

The answer "you can't" is at least partially true. If people are dedicated enough to doing it, there's nothing you can do to stop them. However, you can make it much less attractive and/or monitor for it enough to make it less common.

Here's a list I made up of stuff others were doing in their games:

  • No player-to-player trading except through an open market.
  • Record IP addresses associated with accounts (basically every time we see a new one, make a note).
  • Record errors per account (thus we can catch a preponderance of SQL or Rails errors occurring for certain users). This is helpful for looking for people trying to find exploits.
  • Check IP addresses against a list of known proxies.
  • Count the total number of different IP addresses per account. Large numbers of IP addresses for a single account are suspicious.
  • Note passwords and email addresses used when creating accounts. Players often reuse them.
  • Charge for accounts to make it less attractive to have several.
link|flag
vote up 13 vote down

The only real solution is to remove the incentive to have multiple accounts.

Dont give the characters stuff every X:th hour of real time, or stuff upon registration/creation.

Instead, give stuff based on active playing time.

link|flag
I like that answer, though of course it has to be extended to intrinsic benefits that simply happen by having multiple accounts. e.g. if two player accounts can do twice the damage to another account at the same time, that's an intrinsic benefit that you (may) need to curb after dealing with the benefits mentioned above. – Tchalvak Oct 30 at 22:40
You're just swapping one hard problem (detecting multiplay) for another hard problem (detecting autoplay / afk). Furthermore, nobody accidently autoplays, but everyone occasionally has a crisis that requires them to get up from the keyboard. Are those people afk to gain playtime or are they afk because their sofa is on fire? How do you tell? – quillbreaker Nov 6 at 14:36
vote up 3 vote down

Some games monitor by IP, and require players on the same IP or subnet to register for an exception. You would then have to manually or automatically monitor for interactions on these similar IPs.

The other big problem with these types of games is multiple people playing the same account, or having access, where time spent playing or online presence is important in the game.

link|flag
Been there, done that, that's a never-ending losing proposition. – Tchalvak Oct 30 at 22:41
Yet more evidence that your goal is impossible :) Most of these things evolve, as your players exploit something you have to protect it and the game continues – David Caunt Oct 30 at 23:14
vote up 3 vote down

There's always the Clark/Superman strategem, where you do complex data analysis to look for people who never log in at the same time, or log in one after another.

link|flag
vote up 1 vote down

short answer ... you can't. Unless the barrier is fiscal (as in a world of warcraft account), you won't curb this behavior ... and even in cases like WoW, people have multiple accounts ;-)

link|flag
2  
It's normal for people to have multiple accounts! Normal! ... I'm not an addict! – quillbreaker Oct 30 at 21:11
I've got only one WoW account and one Guild Wars account. Now, as for the number of different characters I've got on each account.... – David Thornley Oct 30 at 21:17
vote up 1 vote down

Note that unique e-mail won't work, as, even easier than getting free e-mails, you can use a service like Mailinator

link|flag
vote up 1 vote down

I'd say there's a few tell-tale signs to look out for:

  • Multiple account logins on the same IP/subnet.
  • Large volumes of 1-way trading to one particular account.
  • Clark/Superman (what quillbreaker said).
link|flag
vote up 0 vote down

Require a credit card number to sign up. Don't charge it.

link|flag
Err...I have three credit cards. I suppose the names are the same on them, but you can't go by unique names or you'd only allow 1 of the Joe Brown's in the world to ever play your game. – T.E.D. Oct 30 at 21:31
yes but your three cards all have the same billing address most likely, so by that check it would only allow one of you to sign up. – Aaron M Nov 3 at 16:29

Not the answer you're looking for? Browse other questions tagged or ask your own question.