mirror of
https://github.com/evennia/evennia.git
synced 2026-03-27 02:06:32 +01:00
21 lines
758 B
Python
21 lines
758 B
Python
#
|
|
# This is Evennia's default connection screen. It is imported
|
|
# and run from game/gamesrc/world/connection_screens.py.
|
|
#
|
|
|
|
from django.conf import settings
|
|
from src.utils import utils
|
|
|
|
DEFAULT_SCREEN = \
|
|
"""{b=============================================================={n
|
|
Welcome to {g%s{n, version %s!
|
|
|
|
If you have an existing account, connect to it by typing:
|
|
{wconnect <username> <password>{n
|
|
If you need to create an account, type (without the <>'s):
|
|
{wcreate <username> <password>{n
|
|
|
|
If you have spaces in your username, enclose it in quotes.
|
|
Enter {whelp{n for more info. {wlook{n will re-show this screen.
|
|
{b=============================================================={n""" \
|
|
% (settings.SERVERNAME, utils.get_evennia_version())
|