Better help messages.
This commit is contained in:
parent
de7da9699c
commit
107241f925
4 changed files with 26 additions and 13 deletions
|
|
@ -6,7 +6,9 @@ import random
|
|||
|
||||
class CmdDrinkTea(Command):
|
||||
"""
|
||||
Drink tea.
|
||||
If you are holding a teacup, and it has a liquid, you may drink your tea.
|
||||
|
||||
This doesn't tell others of this particular activity.
|
||||
"""
|
||||
key = "drink"
|
||||
aliases = "sip"
|
||||
|
|
@ -16,7 +18,9 @@ class CmdDrinkTea(Command):
|
|||
|
||||
class CmdMakeTea(Command):
|
||||
"""
|
||||
Make a pot of magical tea.
|
||||
make [tea-type]
|
||||
|
||||
Make a pot of magical tea. If you do not specify a particular type of tea (or if it doesn't know what type of tea you suggest), the pot will choose something special for the occasion.
|
||||
"""
|
||||
key = "make"
|
||||
aliases = ["make tea"]
|
||||
|
|
@ -30,7 +34,9 @@ class CmdMakeTea(Command):
|
|||
|
||||
class CmdFillTeacup(Command):
|
||||
"""
|
||||
Fill the teacup with whatever is in the teapot.
|
||||
Fill the teacup with whatever tea is in the teapot.
|
||||
|
||||
See 'make tea' for details on getting some tea in the teapot.
|
||||
"""
|
||||
key = "fill"
|
||||
aliases = "pour"
|
||||
|
|
@ -40,7 +46,9 @@ class CmdFillTeacup(Command):
|
|||
|
||||
class CmdGetTeacup(Command):
|
||||
"""
|
||||
Get a teacup.
|
||||
Get a teacup from the trolley.
|
||||
|
||||
Each cup is special, but not necessarily unique.
|
||||
"""
|
||||
key = "get teacup"
|
||||
aliases = ["get cup", "pickup cup", "pickup teacup", "take cup", "take teacup"]
|
||||
|
|
|
|||
|
|
@ -4,7 +4,9 @@ from evennia import Command, CmdSet
|
|||
|
||||
class CmdSit(Command):
|
||||
"""
|
||||
Sit down.
|
||||
If the place you are at has something worthy of of your tushy, you will sit down there-on.
|
||||
|
||||
Sure, you can attempt to 'sit' anywhere.
|
||||
"""
|
||||
key = "sit"
|
||||
def func(self):
|
||||
|
|
@ -12,7 +14,7 @@ class CmdSit(Command):
|
|||
|
||||
class CmdStand(Command):
|
||||
"""
|
||||
Stand up.
|
||||
If you are sitting, you will stand up. You may need to do this in order to leave.
|
||||
"""
|
||||
key = "stand"
|
||||
locks = "cmd:sitsonthis()"
|
||||
|
|
|
|||
|
|
@ -34,19 +34,20 @@ You followed his instructions. Head to the city park, and on the woodsy side, tu
|
|||
|
||||
Just keep following the red kerchiefs, until...
|
||||
|
||||
Welcome to the World of |g{}|n, version {}!
|
||||
Welcome to the World of |g{}|n!
|
||||
|
||||
This is a game. One that hearkens back to earlier age, where, with limited graphics, we created worlds built of words. A story game where you type instructions to manipulate the story.
|
||||
|
||||
If you have an existing account, connect to it by typing (in the lower boxed area if you are on the web):
|
||||
If you have an existing account, connect to it by typing (in the lower boxed area if you are on the web) the following (without the <>'s):
|
||||
|
||||
|wconnect <username> <password>|n
|
||||
|wconnect <username> <password>|n
|
||||
|
||||
If you need to create an account, (in the box at the bottom of the screen) type the following (without the <>'s):
|
||||
Where "username" is the name of your account and your character's name you wish to assume. Please get creative with your password. 😉
|
||||
If you need to create an account, (once again, in the box at the bottom of the screen) type the following (without the <>'s):
|
||||
|
||||
|wcreate <username> <password>|n
|
||||
|wcreate <username> <password>|n
|
||||
|
||||
If you have spaces in your username, enclose it in quotes.
|
||||
If you have spaces in your username or password, enclose it in quotes.
|
||||
|
||||
After you've logged in Enter |whelp me start|n for more the getting started guide.
|
||||
|
||||
|
|
|
|||
|
|
@ -28,7 +28,9 @@ class Fishing(Enum):
|
|||
|
||||
class CmdThrowFish(Command):
|
||||
"""
|
||||
Throw the fish back in the water.
|
||||
Throw the fish, if you are holding one, back in the water.
|
||||
|
||||
A helper can escort the fish to the nearest body of water if you aren't adjacent to one.
|
||||
"""
|
||||
key = "throw"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue