409cbcfff65635164e580a9b3a744473624cbc4b
[mudpy.git] / command
1 [__control__]
2 read_only = yes
3
4 [command:create]
5 action = command_create(actor, parameters)
6 administrative = yes
7 description = Create a new element in the universe.
8 help = Ways to create an element:$(eol)$(eol)   create actor:fred$(eol)   create other:garply foo/bar/baz
9
10 [command:delete]
11 action = command_delete(actor, parameters)
12 administrative = yes
13 description = Delete an existing facet from an element.
14 help = You can delete any facet of an element as follows:$(eol)$(eol)   delete location:boardroom terrain
15
16 [command:destroy]
17 action = command_destroy(actor, parameters)
18 administrative = yes
19 description = Destroy an existing element in the universe.
20 help = You can destroy any element in the universe as follows:$(eol)$(eol)   destroy prop:dagger
21
22 [command:halt]
23 action = command_halt(actor, parameters)
24 administrative = yes
25 description = Shut down the world.
26 help = This will save all active accounts, disconnect all clients and stop the entire program.
27
28 [command:help]
29 action = command_help(actor, parameters)
30 description = List commands or get help on one.
31 help = This will list all comand words available to you along with a brief description or, alternatively, give you detailed information on one command.
32
33 [command:look]
34 action = command_look(actor, parameters)
35 description = Look around.
36 help = With the look command, you can see where you are.
37
38 [command:move]
39 action = command_move(actor, parameters)
40 description = Move in a specific direction.
41 help = You move in a direction by entering:$(eol)$(eol)   move north
42
43 [command:quit]
44 action = command_quit(actor)
45 description = Leave Example.
46 help = This will save your account and disconnect your client connection.
47
48 [command:reload]
49 action = command_reload(actor)
50 administrative = yes
51 description = Reload modules and data.
52 help = This will reload all python modules and read-only data files.
53
54 [command:say]
55 action = command_say(actor, parameters)
56 description = State something out loud.
57 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.
58
59 [command:set]
60 action = command_set(actor, parameters)
61 administrative = yes
62 description = Set a facet of an element.
63 help = Invoke it like this:$(eol)$(eol)   set actor:dominique description You see nothing special.
64
65 [command:show]
66 action = command_show(actor, parameters)
67 administrative = yes
68 description = Show various data.
69 help = Here are the possible incantations (<parameter> is required, [parameter] is optional, (note) is a note):$(eol)$(eol)   show categories (list all element category names)$(eol)   show category <category> (list the elements in a category)$(eol)   show element <element> (list facet definitions for an element)$(eol)   show file <filename> (list elements in a file)$(eol)   show files (list all element data files)$(eol)   show log [level [start [stop]]] (list logs above level from start to stop)$(eol)   show result <expression> (evaluates a python expression)$(eol)   show time (returns several current timer values)
70