lonebyrd
Mar 10 2006, 03:15 AM
| | I've been approved for my webpage (yeah) but am waiting for my confermation email, aol stinks. Anyway, I've been working on an idea for a text based game now for some time on paper. It would be in real time days=days hours=hours kinda thing, needing some databases with pictures. I would want a place where there could be some kind of forum or something like it.
My question is, what languages would I need to know to do this kinda stuff? I've got the HTML down pretty well. I have to download that WAMP thing so I can learn PHP. I'm pretty sure I'll need to learn that and MySQL. But is there anything else or should I not be learning those at all? |
Comment/Reply (w/o sign-up)
unimatrix
Mar 10 2006, 04:04 AM
PHP is the best choice as far as programming languages go. Having developed and deployed a version of the text based games based on the Promisance game language in the past: you may want to evaluate PostgreSQL as your database choice. Now I was using the MySQL 3.x series of databases when I ran my games up until some early versions of 4.x. While the database is great for most web applications, like content management systems or anything running a large number of SELECT statements, I found that MySQL hiccupped more than I would have liked. What MySQL lacked was the ablity to lock tables and rows. If there were a lot of users (say 400 online at one time), people trying to access the same information could cause the whole thing to crash thanks to corrupted data. Now those features are available in the newer versions of MySQL, but PostgreSQL already had those features and they were well tested in production enviroments. I got a version of Promisance recoded to use the PostgreSQL database, but my laptop's Logic board fried and Apple cleaned the HDD when I sent it in. My Fault for not keeping a CDR backup or another copy online. (Although in defense of Apple, I got a new faster Combo drive and OS 10.3 for free [hence why the drive was wiped])
Comment/Reply (w/o sign-up)
lonebyrd
Mar 10 2006, 04:22 AM
O.K., being a programming moron here. Is MySQL or PostgreSQL something I would have to download to use? I haven't even attempted as of yet to get to the database part of looking at things, so I haven't looked into it. I'm starting slowly right now, wanting to get my background in place and trying to work on the CSS, but for some reason when I went to do the CSS on the geocities page it wouldn't work. Maybe I'm not allowed to there, but I did it exactly as it said to do on two different tutorials so I was getting pretty ticked and just decided to take a break.
Comment/Reply (w/o sign-up)
XIII
Mar 10 2006, 07:06 AM
QUOTE(lonebyrd @ Mar 10 2006, 12:15 PM)  My question is, what languages would I need to know to do this kinda stuff? I've got the HTML down pretty well. I have to download that WAMP thing so I can learn PHP. I'm pretty sure I'll need to learn that and MySQL. But is there anything else or should I not be learning those at all?
without any doubt it will be PHP and ofcourse you will need any database, i suggest MySQL, it's much easier to deal with and have more features, i think it's the best for now. by the way, i was planning to begin a game project too, i hope we can be in contact, may we make a good thing together, i have an idea for a game, in fact not only one, i have 3, just i'm so busy with a portfolio manager i'm coding, anyway, i made a google group for that purpose, to connect php programmers and persons who have ideas to create games and projects you can check it at : Google PHP/MySQL Projects Group and i hope we can do some good work together.
Comment/Reply (w/o sign-up)
lonebyrd
Mar 10 2006, 10:04 AM
XIII, when I start learning PHP I will check out that site more. It looks like it could be of some help to me, having people doing the same things and possibly getting some feedback. Thats why I like this place too. If I run into any problems, I can always ask. Being new to programming, it's hard when something doesn't go right and I just cant figure it out. So its always good to have someone elses point of view on things sometimes.
Comment/Reply (w/o sign-up)
minnieadkins
Mar 10 2006, 02:34 PM
QUOTE(lonebyrd @ Mar 9 2006, 11:22 PM) O.K., being a programming moron here. Is MySQL or PostgreSQL something I would have to download to use? I haven't even attempted as of yet to get to the database part of looking at things, so I haven't looked into it. I'm starting slowly right now, wanting to get my background in place and trying to work on the CSS, but for some reason when I went to do the CSS on the geocities page it wouldn't work. Maybe I'm not allowed to there, but I did it exactly as it said to do on two different tutorials so I was getting pretty ticked and just decided to take a break.
It depends. If you have an account at astahost, I think they provide you with a your choice of MySQL or PostGresSQL, or both. All in all I have used both. I haven't designed any databases, but PostGresSQL seems to be somewhat better in some reguards. I don't personally know all the differences in it, but you should probably google it and do some research before you decide. One difference I've heard a lot about is inhertiance. I don't know if the new version of mysql offers it, but postgres does. So, depending on what game type you wanted, if you chose rpg you could create a table that holds fields like race, age, sex, name, etc. Simple characterstics that belong to all every class in your rpg. Then you could create other tables that inherit your previous table that have specific characteristics according to their class. In D&D types of games Orcs are obviously different than humans or elves, so you could probably think of a few characterstics that are different, probably to do with damage or something. Once you decide, either use astahost (or other free web hosting or w/e you want) and start learning. You will have to install it if you want to do it locally, so I don't know what WAMP comes with, but probably php, apache, and mysql. You'll have to install PostGres manually more than likely. Just as mysql has phpMyAdmin, postgres has phpPgAdmin. I like them both, but one of my professors says that he likes phpMyAdmin better. It apparently has a lot more features. For me, I find them both adequate, but after using phpPgAdmin for awhile, it seems more logical the way it's layed out rather than phpMySql. Good luck, and if you need help installing it, you might find someone to supply you with the commands to add to your .ini's and .conf files in order to make postgres work with php by altering your WAMP configurations. That is if it's not installed already, I've never used WAMP. I don't know much about the pictures either, but you want to store pictures on your database? I've never done that but it sounds interesting. I personally just use an upload script and upload them then have the url's to each image written to the database. Can you actually encrypt the image and store it? Good Luck.
Comment/Reply (w/o sign-up)
XIII
Mar 11 2006, 02:47 AM
QUOTE(minnieadkins @ Mar 10 2006, 11:34 PM)  I don't know much about the pictures either, but you want to store pictures on your database? I've never done that but it sounds interesting. I personally just use an upload script and upload them then have the url's to each image written to the database. Can you actually encrypt the image and store it?
Good Luck.
never i heared about that before, all i know about this subject, not only know but also use, is images links, to put them into your database, so you can point to these images by pointing to thier links in your database, that's what i know and what i think you need.
Comment/Reply (w/o sign-up)
lonebyrd
Mar 11 2006, 01:31 PM
I don't know alot about databases so I didn't know it wasn't posible to put pictures in. I will figure things out when I start reading about it. I'm getting my original computer back on Tuesday hopefully, so I can download what I need, such as WAMP and things, to get started. But as of yet, I still haven't recieved my confomation Email from astahost (problems with AOL or something). But the computer I'm on now I think either has a bad power supply or motherboard issues. It keeps shutting itself down, not hibernation mode. But none-the-less I should be getting my computer back on tuesday.
Comment/Reply (w/o sign-up)
Similar Topics
Keywords : language, game, text, based
- Browser Based Text Games
(2)
What You Need Before You Can Create A Text-based Game..
Using PHP, HTML and MySQL (7) Please comment and rate, after you finished reading! /smile.gif" style="vertical-align:middle"
emoid=":)" border="0" alt="smile.gif" />
################################################################# Change log: Aug 22 2008: The
Tutorial Was Created. V1.0.0 Aug 30 2008: Added XHTML and a small CSS part. Also corrected some
small things and added this change log. V2.0.0
################################################################# OK.. Many people here want to
create text based games. Many of you ask us here on the forums: "how to create a text-based game....
Need Help With Codeing For A Turn Based Game
(0) hi, i am new to programming and have started creating my own turned based mmo in php, can any one
help me i am stuck with the coding for the main part of the mmo also the php tutorials were not
useful. this is the site for my mmo www.starciv.net78.net the mmo will be similar on
astroempires.com and ogame.org....
Powerpoint Based Games!
I know how to make them! (18) Hi, have you ever heard of Tic Tac Toe/X's and O's on PowerPoint slides. I'm trying to
make one but is HTML. xxxx-jozh-xxxx....
This Is Def. A Big Topic I See, I Want To Mke An Online Text Based Game
please help me out (5) ok, i know absolutly nothing, i know what i want to make and that i want a members bit, for paying
people. I want to make a game like the one at www.tycoononline.nu and like www.injustice.net.nz, and
games like that, its going to be about makeing a business. at the beging you get said amount of
cash, you choose a profession, law, farming, oil, crime, stuff of the nature. when you mkae a
bussiness, or crime family you have shares orsomething else for the crime, but you cant automaticlly
make a bussiness, you need to get investors and stuff like that, you never get to se....
Text Based Internet Site Game...
(2) Hey guys, Im new here just thought i'd say hello! /smile.gif" style="vertical-align:middle"
emoid=":)" border="0" alt="smile.gif" /> Im planning on creating a text based internet game using
php/sql.. im sure many people have asked for this over the months/years hehe. Though at first when
learning php thankfully i learnt visual basic and html in school and the logic of php is not to bad.
All was looking good on that front. Though i think i underestimated how big of a thing this is for
one man to do alone. I cannot for life of me even begin to think where to start ....
Help Creating A Browser-based Rpg
(8) I have played games like www.the-lost-realm.com and www.torncity.com and I have always wanted to
make my own. I have some programming experience in Java and Perl, but I'm looking to make this
game in PHP. It would be nice if someone could add me on MSN at joli334@yahoo.com and help me get
started. I just want to start out with something simple and work my way up. I know not to shoot for
the stars right away. Any help from anyone would be greatly appreciated, thanks.....
Making A Turn Based Game Like Ogame
Help would be nice =D (9) The Idea came to me and Just wanted to know what kind of code I'll need to know ect ect Also
Help would be nice, because I'm kind of fresh =D x....
Making A Php Based Online Game
Would anybody like to help (3) I, along with several others, am making an online game called Galactic Rifts (at the moment). It is
a sci-fi text or graphical based game set in the future where you have to conquer other players and
dominate. The address is http://galacticrifts.ssr.be/ so if anybody would like to help come along
and sign up. We are currently in the planning stage so any new ideas will be welcome.....
Advice About Making A Text Based Game
(9) I got my Astahost account in hopes of making a multi-player, online, text-based game in real time.
What I need help with is the programming side of things, a little advice really. I talk to the
maker of a similar type game that I play, and he suggested I learn PHP with MySQL and ASP, and I
cant really remember if he said anything else. I have been playing around a little with PHP and
only dabbled with MySQL, but I know nothing of ASP except that it stands for Active Server Pages.
So basically, the advice I'm looking for is, what kinds of scripting/coding would pe....
I Want To Create A PHP Text Based Web Game
(8) I am new to programming and although HTML and it's similar forms I already know, I would like to
learn PHP but I have no clue where to start. I have been playing this game online for over a year
now, and I have yet to find anything similar, so I want to take a jab at creating it. The game is
Kings of Chaos and in my mind it just rocks, but when you only get 1 turn every 30 minutes the time
between turns i get bored and have tried several other game that are similar but they in no way
caompare, if anything they look like hacked up copies of KoC and with lots of bugs ....
Help Me Create A Text-based, Turn-based Game
Similar to X-kings, Inselkampf, Ogame, Travian,etc.. (10) Can anyone help me create a game similar to the ones mentioned above? It isn't intended to have
lots of graphics, but maybe a few... Any response will be much appreciated.....
How To Make A Text Based Online Game Script ?
(24) Does anyone know if there is a easy was to make a text base online game, Like a free templet, or if
anyone know how to make one and can help me.....
Looking for language, game, text, based
|
See Also,
*SIMILAR VIDEOS*
Searching Video's for language, game, text, based
|
advertisement
|
|