Imported from archive.
[mudpy.git] / mudpy.conf
1 [__control__]
2 default_files = { "account": "account", "actor": "actor", "command": "command", "internal": "internal", "location": "location", "menu": "menu", "other": "other", "prop": "prop" }
3 include_files = [ "archetype", "example/index" ]
4 private_files = account
5 read_only = yes
6
7 [internal:language]
8 actions = { "?": "ask", ",": "begin", "-": "begin", ":": "begin", ";": "begin", "!": "exclaim", "...": "muse", ".": "say" }
9 default_punctuation = .
10 typos = { "i": "I", "i'd": "I'd", "i'll": "I'll", "i'm": "I'm", "teh": "the", "theyre": "they're", "youre": "you're" }
11
12 [internal:limits]
13 #default_admins = admin
14 #default_backup_count = 10
15 max_avatars = 7
16 password_tries = 3
17
18 [internal:logging]
19 #file = mudpy.log
20 max_log_lines = 1000
21 stdout = yes
22 #syslog = mudpy
23
24 [internal:network]
25 host = 127.0.0.1
26 port = 6669
27
28 [internal:process]
29 #daemon = yes
30 #pidfile = mudpy.pid
31
32 [internal:time]
33 definition_d = 24h
34 definition_h = 60mi
35 definition_mi = 10r
36 definition_mo = 28d
37 definition_r = 6
38 definition_w = 7d
39 definition_y = 12mo
40 frequency_log = 6000
41 frequency_save = 600
42 increment = 0.1
43
44 [internal:directions]
45 down = { "vector": (0,0,-1), "exit": "downward", "enter": "above" }
46 east = { "vector": (1,0,0), "exit": "to the east", "enter": "the west" }
47 north = { "vector": (0,1,0), "exit": "to the north", "enter": "the south" }
48 south = { "vector": (0,-1,0), "exit": "to the south", "enter": "the north" }
49 up = { "vector": (0,0,1), "exit": "upward", "enter": "below" }
50 west = { "vector": (-1,0,0), "exit": "to the west", "enter": "the east" }
51