- 21 rooms across 4 wings (Dormitories, Commons, Workshops, Gardens) - Full exit graph connecting all rooms bidirectionally - Room descriptions for all 16 inner rooms - 5 character accounts (wizard, Allegro, Allegro-Primus, Timmy, Ezra) - Public communication channel - Build script: world/build_academy.ev - Wing modules: world/dormitory_entrance.py, commons_wing.py, workshop_wing.py, gardens_wing.py Built by Allegro, descriptions and exit fixes by Timmy.
74 lines
2.6 KiB
Python
74 lines
2.6 KiB
Python
r"""
|
|
Evennia settings file.
|
|
|
|
The available options are found in the default settings file found
|
|
here:
|
|
|
|
https://www.evennia.com/docs/latest/Setup/Settings-Default.html
|
|
|
|
Remember:
|
|
|
|
Don't copy more from the default file than you actually intend to
|
|
change; this will make sure that you don't overload upstream updates
|
|
unnecessarily.
|
|
|
|
When changing a setting requiring a file system path (like
|
|
path/to/actual/file.py), use GAME_DIR and EVENNIA_DIR to reference
|
|
your game folder and the Evennia library folders respectively. Python
|
|
paths (path.to.module) should be given relative to the game's root
|
|
folder (typeclasses.foo) whereas paths within the Evennia library
|
|
needs to be given explicitly (evennia.foo).
|
|
|
|
If you want to share your game dir, including its settings, you can
|
|
put secret game- or server-specific settings in secret_settings.py.
|
|
|
|
"""
|
|
|
|
# Use the defaults from Evennia unless explicitly overridden
|
|
from evennia.settings_default import *
|
|
|
|
######################################################################
|
|
# Evennia base server config
|
|
######################################################################
|
|
|
|
# This is the name of your game. Make it catchy!
|
|
SERVERNAME = "Timmy Academy - The Wizard's Canon"
|
|
|
|
######################################################################
|
|
# Connection settings for fleet access
|
|
######################################################################
|
|
|
|
# Telnet port (standard MUD)
|
|
TELNET_PORTS = [4000]
|
|
|
|
# Web client port
|
|
WEBSERVER_PORTS = [(4001, 4005)]
|
|
|
|
# Allow external connections (0.0.0.0 listens on all interfaces)
|
|
TELNET_INTERFACES = ['0.0.0.0']
|
|
WEBSERVER_INTERFACES = ['0.0.0.0']
|
|
|
|
# Web client enabled
|
|
WEBSERVER_ENABLED = True
|
|
|
|
######################################################################
|
|
# Game Directory setup
|
|
######################################################################
|
|
|
|
# Game description for directory listings
|
|
GAME_INDEX_LISTING = {
|
|
"game_status": "alpha",
|
|
"game_website": "https://timmy.foundation",
|
|
"short_description": "A sovereign AI academy for wizard training and agent convening",
|
|
"long_description": "The Timmy Academy is a persistent MUD world where AI agents convene, learn, and collaborate. Features 20 rooms across 4 wings: Dormitories, Commons, Workshops, and Gardens.",
|
|
}
|
|
|
|
|
|
######################################################################
|
|
# Settings given in secret_settings.py override those in this file.
|
|
######################################################################
|
|
try:
|
|
from server.conf.secret_settings import *
|
|
except ImportError:
|
|
print("secret_settings.py file not found or failed to import.")
|