NetCog![]() Member Posts: 149 From: Registered: 06-15-2006 |
I am planning on starting my game design with a text-based "rpg" of sorts. I don't know how far I'll get with actual production but I figure the framework creation will be good practice. I've got "races", "classes", "affiliations" Class will be one database w/ Rows for each individual class and columns for each attribute (bonuses and the like). I figure the "world" could be a table, with each room being a row, with each room attribute being a column. My question is how do you make NPCs (which could be in the PCharacter table or in a separate NPC table) and PCs exist in the same room. Is that a File, a Table, or is there some other method normally used in a non-graphical or maybe it's the same for graphical "rooms". I figure for Player1 playing Character1 the code to see who's in the room would have the PC Table include a column for "current_room". You'd run an (something like):
Some of that wouldn't be so bad if you had only a few rooms....but I'm thinking of at least hundreds if not thousands of rooms.
Thanks, |
Mene-Mene![]() Member Posts: 1398 From: Fort Wayne, IN, USA Registered: 10-23-2006 |
I've often thought of doing a likewise game. As far as I know BB doesn't support Databases, so I don't have experience. I have use Access though. I'm not entirely sure of your method for using a database. My suggestion for this RPG would be make the game first, then code it. Example, I wanted to eventually make my game, but first I played it as a paper RPG. I created worlds, Species, Professions, clothing, ext. Although it may not be as big as yours, I hope I can help. ------------------ |
NetCog![]() Member Posts: 149 From: Registered: 06-15-2006 |
This would be my first time creating a "paper game" as well....but that's a good suggestion to do first. I started trying to get organized in a spreadsheet but it started getting a bit confusing trying to get it into plain and simple relations. I'd definately need to brainstorm a little more in detail before trying to commit anything to code. Any suggestions on paper game creation thoughts or "things to consider"? |
Mene-Mene![]() Member Posts: 1398 From: Fort Wayne, IN, USA Registered: 10-23-2006 |
I started on word documents. I built my basic character, had some Ideas, then built the game around it. It was Star Wars in fact. I might suggest if you have any friends play it with them. Use these as the testers, and continue building. I started with 1 profession, 3 worlds, a few items in the shop, and about 3 enemies. Its grown massively to say the least. I haven't learned how to code it though. Be creative! In my experience RPGs often have alot of random elements, the only randomness in this game was who you face, and that is differed depending upon your strength. Mine was your skill determined your attack, and it was consistant. I also suggest playing it yourself with yourself making it fair. One of my problems after doing this for a few months was I went so much harder on myself I got experience at a faster rate, and thus became more powerful, and grew faster. Have fun! I've got to scram! Edit: An additional note: I build first in my head, then write it all down. I find the nighttime in bed to be more than sutible for my imagination. ------------------ [This message has been edited by Mene-Mene (edited December 04, 2006).] |
Mene-Mene![]() Member Posts: 1398 From: Fort Wayne, IN, USA Registered: 10-23-2006 |
I would enjoy looking at your work, though, and having fun with you. (What? Why are you looking at me like that.) Or rather "Helping" you. ![]() ------------------ |
NetCog![]() Member Posts: 149 From: Registered: 06-15-2006 |
I'll have to figure out some stuff then I'll post what i have. I need to get my "map" and racial stuff into focus a little then I'll post to see what thoughts are.
|