Merge pull request 'Intro screen' (#20) from oreolek/vantaMOO:intro_screen into vanta

Reviewed-on: vantablack/vantaMOO#20
This commit is contained in:
vanta black 2023-01-08 08:37:47 +00:00
commit 1e3b6bf0ca
2 changed files with 31 additions and 8 deletions

7
.pre-commit-config.yaml Normal file
View File

@ -0,0 +1,7 @@
fail_fast: true
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: trailing-whitespace
- id: check-ast

View File

@ -25,16 +25,32 @@ from django.conf import settings
from evennia import utils
CONNECTION_SCREEN = """
|b==============================================================|n
Welcome to |g{}|n, version {}!
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
|n |wansi (c) garu|n |n
|n |wWelcome to..|n |n
|n |n
|n |c |n |c|n |n
|n |m |C|m|C|m|C|m|n |n
|n |m |n|w|M|n|w|M|n|w|n |n
|n |w|[m|n |w|[m|n |w|[m|n |w|[m|n |w|[m|n |w|[m|n |w|[m|n |w|[m|n |w|[m|n |w|[m|n |w|m|n|w|m|n|w|M|n |n
|n |M|m|[w|n |m|[w|n |M|[w|n |m|[w|n |M|[w|n |m|[w|n |m|[w|n |m|[w|n |m|C|M|C|M|C|n |n
|n |M|w |M |w|M|w |M|w |n |w|n |w|M|w |C |n |n
|n |x|[W|n|w|x|[W|n |w|n |w |n |w|n |w|n |w|n |n
|n |x|[W|n |x|[W|n |x|[W|n |x|[W|n |x|[W|n |x|[W|n |x|[W|n |x|[W|n |n
|n |m |n |n
|n |wBROUGHT TO YOU BY|n |m |n|m |n |n
|n |mVANTABLACK|n |m |n |m |n |m|n |n
|n |m|[w|n |M|w|[m|n|M|n |m|[w|n |m|[w|n |m|[w|n |m|[w|n |m|[w|n|m|n |n
|n |w |M |w |n |w |n |w|n |n
|n |w|n |w |x|[W|w|x|[W|n |x|[W|w|x|[W|n |n
|n |x|[W|n |x|[W|n |x|[W|n |x|[W|n |n
|n|x |rNew users: |ncreate <user> <password>|n |n
|n |n
|n|w |GExisting users: |nconnect <user> <password>|n |n
|n |n
|n |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""".format(
""".format(
settings.SERVERNAME, utils.get_evennia_version("short")
)