So there I was pondering nothing and I had an idea, not that it was an original idea, but an idea nonetheless. I thought about creating a web-based MUD (Multi-User Dungeon). For those that are not familiar with MUDs, they are text-based rpgs. You type commands to do things, like n to walk north. They've been around for quite sometime and back in the hayday they were very popular. Some people even flunked out of college because of them.
Anyways, I thought about created one for the web. but rather than typing all your commands you'd click links.Being that its going to be on the web I wanted to use PHP/MySQL. As far as the SQL database would go, I wanted to do something like this. I would have a table with a row named 0-10, and 10 columns named 0-10. it would look something like this.
Code: Select all
0 1 2 3 4 5 6 7 8 9
0
1
2
3
4
5
6
7
8
9
Each field would contain the id from a different database that would contain the info about the current location.
This is the part I'm wondering about. If I had a lot of players would that cause too much server traffic?
-KunoNoOni