I'm currently building a game whose NPC's are going to be assigned a random gender and a random name for the right gender. To do this I will be using a "database" of names (actually a text file with tuples). There would also be a list of last names, which will be added to the first name also randomly.
My question is the following. Suppose one such random name is "George Bush", and this person has been randomly assigned the job of president. As you can see, this could easily be seen as having been "copied" from a real-life person.
The main issue is this. Names will be randomly-generated, yes, but the seed for random-number generation will be constant. In other words, the name of an NPC would be randomly-generated, i.e. I wouldn't choose it, but it would be the same for every player. Could this get me in trouble? We cannot verify all possible names, since the generated number of NPC's could be potentially limitless (new NPC's are being created whenever needed).
|
|
|||||
|
|
Legally I would be prepared for "change this name" notices and make it very easy to change that name; no matter how much in the right you think you are, it's just a nice thing to do. Create and maintain a dictionary of names to avoid, no matter how legal it is anyone who sees "George Bush" in your game will immediately lose their sense of immersion. Combined with a standard fictitious name disclaimer to cover obscure names you should be good to go. |
|||||||||||||||||
|
|
You've already chosen an answer, but I think you're making this more complex than you need to. A lot of people have the same names as famous people, whether by choice or accident. You don't see the estates of famous people demanding average people change their names to avoid confusion, and there's no reason you should worry about it unless you are explicitly trying to imply that your NPC "Goerge Bush" is somehow supposed to be the real one. And even then, even if it was satire, you can still use the real name. Seriously, just a simple disclaimer like was posted in another answer and you're fine. "All characters appearing in this work are fictitious and randomly generated. Any resemblance to real persons, living or dead, is purely coincidental." |
|||||||||
|
|
Add a disclaimer:
Use the above to cover yourself. And I'll use the below to cover myself.
Of course, since neither of us are lawyers, the amount of covering going on anywhere in there is questionable. So if you want a true answer, seek professional legal advice. |
|||||||||||||||
|
|
As long as you can prove your code (in case of legal action, your code will be used as evidence) is generating those names randomly there will be no problem because depending on the amount of data (names, last names, jobs) it is just a matter of statistics to find the probable chance of having those combinations be the same as a real person. As Byte56 stated, adding a disclaimer will also prove really helpful. Adding the fact that you are generating the NPCs data randomly to that disclaimer will also be great! |
|||
|
|