Imported from archive.
[mudpy.git] / command
1 [control]
2 read_only = yes
3
4 [command:quit]
5 action = command_quit(user, command, parameters)
6 description = Leave Example.
7 help = This will save your account and disconnect your client connection.
8
9 [command:halt]
10 action = command_halt(user, command, parameters)
11 description = Shut down the world.
12 help = This will save all active accounts, disconnect all clients and stop the entire program.
13
14 [command:help]
15 action = command_help(user, command, parameters)
16 description = List commands or get help on one.
17 help = This will list all comand words available to you along with a brief description or, alternatively, give you detailed information on one command.
18
19 [command:show]
20 action = command_show(user, command, parameters)
21 description = Show program data.
22 help = For now, this is used to show things like "avatars", "time" and "universe".
23
24 [command:reload]
25 action = command_reload(user, command, parameters)
26 description = Reload code modules and data.
27 help = This will reload all python code modules, reload configuration files and re-read data files.
28
29 [command:say]
30 action = command_say(user, command, parameters)
31 description = State something out loud.
32 help = This allows you to speak to other characters within the same room. If you end your sentence with specific punctuation, the aparent speech action (ask, exclaim, et cetera) will be adapted accordingly. It will also add punctuation and capitalize your message where needed.
33