Made unloggedin help reflect the avilability of the encoding command also at this stage.

This commit is contained in:
Griatch 2014-09-10 08:58:21 +02:00
parent dbbacb4bb3
commit a749f0c5ca

View file

@ -303,25 +303,27 @@ class CmdUnconnectedHelp(MuxCommand):
string = \ string = \
""" """
You are not yet logged into the game. Commands available at this point: You are not yet logged into the game. Commands available at this point:
{wcreate, connect, look, help, quit{n
To login to the system, you need to do one of the following: {wcreate{n - create a new account
{wconnect{n - connect with an existing account
{wlook{n - re-show the connection screen
{whelp{n - show this help
{wencoding{n - change the text encoding to match your client
{wquit{n - abort the connection
{w1){n If you have no previous account, you need to use the 'create' To login, first create an account
command.
{wcreate Anna c67jHL8p{n {wcreate Anna c67jHL8p{n
Note that if you use spaces in your name, you have to enclose in quotes. Note that if you use spaces in your name, you have to enclose in quotes:
{wcreate "Anna the Barbarian" c67jHL8p{n {wcreate "Anna the Barbarian" c67jHL8p{n
It's always a good idea (not only here, but everywhere on the net) It's always a good idea (not only here, but everywhere on the net)
to not use a regular word for your password. Make it longer than to not use a regular word for your password. Make it longer than
6 characters or write a passphrase. 6 characters or write a full passphrase.
{w2){n If you have an account already, either because you just created Once you have an account, connect using your password
one in {w1){n above or you are returning, use the 'connect' command:
{wconnect Anna c67jHL8p{n {wconnect Anna c67jHL8p{n
@ -330,6 +332,7 @@ To login to the system, you need to do one of the following:
to get more aid. Hope you enjoy your stay! to get more aid. Hope you enjoy your stay!
You can use the {wlook{n command if you want to see the connect screen again. You can use the {wlook{n command if you want to see the connect screen again.
""" """
self.caller.msg(string) self.caller.msg(string)
@ -339,7 +342,7 @@ class CmdUnconnectedEncoding(MuxCommand):
set which text encoding to use in unconnected-in state set which text encoding to use in unconnected-in state
Usage: Usage:
@encoding/switches [<encoding>] encoding/switches [<encoding>]
Switches: Switches:
clear - clear your custom encoding clear - clear your custom encoding
@ -357,8 +360,8 @@ class CmdUnconnectedEncoding(MuxCommand):
instead. instead.
""" """
key = "@encoding" key = "encoding"
aliases = "@encode" aliases = "@encoding, @encode"
locks = "cmd:all()" locks = "cmd:all()"
def func(self): def func(self):