Tagged Questions

MUDs (historically Multi-User Dungeon, with later variants including Multi-User Dimension and Multi-User Domain) are a broad category of multi-user virtual world systems -- usually text-based, usually games, usually accessed via the Telnet protocol, and usually free. They date to Roy Trubshaw and Richard Bartle's creation of MUD1 in 1978, and are the direct predecessor genre to the MMORPG.

learn more… | top users | synonyms

11
votes
1answer
419 views

Clojure best way to achieve multiple threads?

I am working on a MUD client written in Clojure. Right now, I need two different threads. One which receives input from the user and sends it out to the MUD (via a simple Socket), and one that reads ...
9
votes
7answers
489 views

Does anyone have any useful resources to share or tips to offer for developing a MUD?

As a hobby project I am trying to create a ROM (Diku-Merc based) derivative. (Now defunct) I would appreciate it if anybody has done something similar and has some useful resources to share or tips to ...
5
votes
2answers
676 views

MUD Programming questions

I used to play a MUD based on the Smaug Codebase. It was highly customized, but was the same at the core. I have the source code for this MUD, and am interested in writing my own (Just for a fun ...
3
votes
1answer
118 views

Listening socket connecting without accept being called on Linux

I am running code on Ubuntu Linux it is supposed to use a Set and select to check when a listening socket has activity (ie someone trying to connect) and let them connect, the trouble is select ...
3
votes
2answers
123 views

What is the best way to manage text-based client-server connections?

I'm looking to write a small client-server-based text game that handles multiple client connections and persistently affects a game state. I'm wondering what the best way would be to handle multiple ...
3
votes
2answers
276 views

How should I handle persistence in a Java MUD? OptimisticLockException handling

I'm re-implementing a old BBS MUD game in Java with permission from the original developers. Currently I'm using Java EE 6 with EJB Session facades for the game logic and JPA for the persistence. A ...
3
votes
5answers
243 views

Can you provide some advice on setting up my database?

I'm working on a MUD (Multi User Dungeon) in Python and am just now getting around to the point where I need to add some rooms, enemies, items, etc. I could hardcode all this in, but it seems like ...
3
votes
5answers
677 views

Telnet lib and language choice for cross OS telnet client?

I'm looking to start a MUD client application, which connects to a MUD hosted on a telnet server. The only thing important to me is that it runs painlessly and efficiently across any OS. Aside from ...
2
votes
3answers
123 views

Drawing mud map

I'm trying to draw map of some mud. I have used python and graphviz to get something like: http://img23.imageshack.us/img23/5222/arrasz.png As you can see we have some locations and going ...
2
votes
3answers
237 views

MUD Programming language

I have been playing a MUD game now off and on for over a year. I have scoured the internet looking for the best computer language to learn to develop my own. So far, I have come up with nothing but C. ...
2
votes
5answers
346 views

Custom programming language: how?

Hopefully this question won't be too convoluted or vague. I know what I want in my head, so fingers crossed I can get this across in text. I'm looking for a language with a syntax of my own ...
2
votes
6answers
416 views

MUD (game) design concept question about timed events

I'm trying my hand at building a MUD (multiplayer interactive-fiction game) I'm in the design/conceptualizing phase and I've run into a problem that I can't come up with a solution for. I'm hoping ...
1
vote
1answer
56 views

How can I share a console program over the network?

I'm looking for some kind of TELNET daemon for linux to share a single app. I wrote a BBS/MUD, but no networking routines, and I'm looking for a way to "share" the app, in a way Citrix XenApp works ...
1
vote
1answer
539 views

C# Telnet Proxy

I am working on developing an extensible MUD/ORPG game server framework in C#. As part of the package, I would like to include a SOCKS5 proxy client that could be installed on user's machines. This ...
0
votes
5answers
71 views

Use threads as “sessions”

I am developing a text-based game, MUD. I have the base functions of the program ready, and now I would like to allow to connect more than one client at a time. I plan to use threads to accomplish ...
0
votes
0answers
31 views

Receiving data from a mud with sockets - telnet negotiation?

For a bit of context first, to make the question easier to understand: I've a fair understanding of java networking, but all networking I've done up to this point has been send a command-> wait for a ...
0
votes
1answer
89 views

C# Cross Platform RichTextBox URLs or alternative solution

I am developing a C# application to communicate with a MUD/MOO server. Basically it takes text and displays it on the screen. At the moment i'm using a RichTextBox to display the text and I have ...
0
votes
0answers
44 views

Enable MCCP support in a Java Telnet/SSH client

I am stuck with bit of a dilemma. I want to enable MCCP support in a Java application that runs on mobile phones but I can't find anything about it. What I have found is: A Telnet Client running on ...
0
votes
1answer
50 views

How to compile MUD SoG 1999 sources? [closed]

Which compiler was used to build SoG MUD in 1999? http://www.ianshirm.net/index.php?option=com_remository&Itemid=53&func=fileinfo&id=1370 - that's the sources I mean. Could somebody help ...
0
votes
2answers
114 views

How to make .mak file?

I have src of the project that was created in 1999 (actually it's MUD SoG '99). There are file SOG.MAK, but I couldn't find any data about how to make this project. Could somebody give me a hint how ...
0
votes
2answers
176 views

How do I provide the ability for multiple players to connect to my MUD?

I've recently created a short and simple Multi-User Dungeon. The things I've made are the engine of the game and the actual MUD itself, so when i click on the file it you can play the MUD. The ...
-1
votes
1answer
137 views

How does this code work? (a tale of MUD server baffle-ry)

I found some sample code establishing a multi-threaded chat server, written with the intent of being expanded into a simple MUD on this website: ...