ringmud
ringmud copied to clipboard
RingMUD Java Mud Server and Engine
The server needs to send timeout notifications to people who are idle. The warning should occur when it is detected that the player is idle. When the actual timeout task...
The current Intermud3 library is asynchronous and thus requires its own aspect that is not limited by percflow in order to enable communication routing.
Might need to approach it from a more generic perspective in order for scalable updates. Something like this to update an object: ``` Transaction tx = Persistence.beginTransaction("doc.xml", obj.getID()); tx.update(obj); tx.save();...
This is to be one of the main hooks for Python. A shell is something that the user interacts with, generally through a keyboard. A shell should have the following...
The MUD server supports multiple characters on one account, however the option to actually create a new character is not present. This needs to be added.
Currently, the server will attempt to automatically reconnect players who get disconnected. However, this has the unfortunate side-effect of "restoring" connections that are not actually in need of restoration. For...
When text is interjected, the prompt does not preserve what was being typed. The method is already there to detect when this happens, but restoring of what has been typed...
There are a number of protocols that could be useful: 1. Intermud3 2. Intermud2 3. MSSP (MUD Server Status Protocol) 4. MCCP (compression) Intermud chatting and MSSP are the first...
Need to detect if someone connects while still connected. If so, do not allow them on if their connection is valid. If it is broke, put them back in the...