Question:
Do you know a website to teach a know-nothing nerd how to make a text adventure game?
Joe Shmoe
2008-05-26 16:43:24 UTC
I was playing some old text adventure game, like colossal cave or something, and I thought, hm, I want to make something like this. It sounded like a fun idea. Does anybody know where I can find a "how to" website that will help me through the steps? Or anything like that?
Three answers:
2008-05-26 17:23:32 UTC
There's a couple of ways to do it. There's a pretty nice freeware text adventure authoring system called "tads"



http://www.tads.org/



TADS is a programming language, but it's optimized for text adventures, and it's reasonably easy to use, even if you've never programmed before. It comes with quite good documentation and tutorials.



If you're handy at HTML, you can use HTML and CSS to build a very complex text adventure. Simply build a page for each room and use links to connect the various rooms. The advantage of this is you can add graphics and formatting to get a nice look.



Of course, you can use a programming language to build this type of program as well, but you should be familiar with text parsing. I have some examples available (using graphics, not text-based) in Flash:

http://www.cs.iupui.edu/~aharris/flash/fg2r03/adventure.html



And the same game done in a completely different style in Python:

http://aharrisbooks.net/pythonGame/ch10/adventure.py
Margus M
2008-05-26 16:55:13 UTC
Depends on your programming skills i guess. If you think about it, you just need to know some basic I/O and Socketing to set up working telnet mmrpg.

Anyhow check this link:

http://en.wikipedia.org/wiki/MUD#External_links
AraxisHT
2008-05-26 16:55:30 UTC
Tutorials: http://www.rdxgames.net/projects/wrathlands/index.html



Compiler (DevC++): http://www.bloodshed.net/devcpp.html


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...