mirror of
https://github.com/evennia/evennia.git
synced 2026-03-30 20:47:17 +02:00
18 lines
658 B
Python
18 lines
658 B
Python
#
|
|
# This is Evennia's default connection screen. It is imported
|
|
# and run from game/gamesrc/world/connection_screens.py.
|
|
#
|
|
|
|
from src.utils import utils
|
|
|
|
DEFAULT_SCREEN = \
|
|
"""{b=============================================================={n
|
|
Welcome to {gEvennia{n, version %s!
|
|
|
|
If you have an existing account, connect to it by typing:
|
|
{wconnect <email> <password>{n
|
|
If you need to create an account, type (without the <>'s):
|
|
{wcreate \"<username>\" <email> <password>{n
|
|
|
|
Enter {whelp{n for more info. {wlook{n will re-show this screen.
|
|
{b=============================================================={n""" % utils.get_evennia_version()
|