swampymud icon indicating copy to clipboard operation
swampymud copied to clipboard

A simple python MUD engine, created by UF students.

Results 4 swampymud issues
Sort by recently updated
recently updated
newest added

``` C:\Users\default>python -m swampymud --tcp 1234 2024-03-01 14:43:55,072 [INFO] Launching a TCP Server on port '1234' 2024-03-01 14:43:55,074 [WARNING] C:\Users\default\AppData\Local\Programs\Python\Python312\Lib\site-packages\swampymud\__main__.py:121: DeprecationWarning: There is no current event loop asyncio.get_event_loop().run_until_complete(server.run()) 2024-03-01 14:44:07,881...

Our sandbox is composed of entities, items, characters, and locations. Each of these classes needs a flexible, `describe()` method. For reference, we have agreed upon the following convention: ```python class...

enhancement
high-priority

Currently, players have no means of "logging in" to an account. We need a system that looks like this: ``` Welcome to MuddySwamp? Do you have an existing character? (yes/no)...

enhancement
MuddySwamp
Discussion

Players should be restricted from using certain items based on their class. For instance, a warrior should not be able to equip a mage's staff, or use a magic scroll....