310c307a023a5a70aa18c6f2a79784ac3146cfca
[mudpy.git] / mudpy.conf
1 # Copyright (c) 2004-2008 Jeremy Stanley <fungi@yuggoth.org>. Permission
2 # to use, copy, modify, and distribute this software is granted under
3 # terms provided in the LICENSE file distributed with this software.
4
5 [__control__]
6 default_files = { "account": "account", "actor": "actor", "command": "command", "internal": "internal", "location": "location", "menu": "menu", "other": "other", "prop": "prop" }
7 include_files = [ "archetype", "example/index" ]
8 private_files = account
9 read_only = yes
10
11 [internal:language]
12 actions = { "?": "ask", ",": "begin", "-": "begin", ":": "begin", ";": "begin", "!": "exclaim", "...": "muse", ".": "say" }
13 default_punctuation = .
14 typos = { "i": "I", "i'd": "I'd", "i'll": "I'll", "i'm": "I'm", "teh": "the", "theyre": "they're", "youre": "you're" }
15
16 [internal:limits]
17 #default_admins = admin
18 #default_backup_count = 10
19 max_avatars = 7
20 password_tries = 3
21
22 [internal:logging]
23 #file = mudpy.log
24 max_log_lines = 1000
25 stdout = yes
26 #syslog = mudpy
27
28 [internal:network]
29 host = 127.0.0.1
30 port = 6669
31
32 [internal:process]
33 #daemon = yes
34 #pidfile = mudpy.pid
35
36 [internal:time]
37 definition_d = 24h
38 definition_h = 60mi
39 definition_mi = 10r
40 definition_mo = 28d
41 definition_r = 6
42 definition_w = 7d
43 definition_y = 12mo
44 frequency_log = 6000
45 frequency_save = 600
46 linkdead = { "default": 6000, "entering_account_name": 600, "active": 6048000 }
47 idle = { "default": 5000, "entering_account_name": 500, "active": 5040000 }
48 increment = 0.1
49
50 [internal:directions]
51 down = { "vector": (0,0,-1), "exit": "downward", "enter": "above" }
52 east = { "vector": (1,0,0), "exit": "to the east", "enter": "the west" }
53 north = { "vector": (0,1,0), "exit": "to the north", "enter": "the south" }
54 south = { "vector": (0,-1,0), "exit": "to the south", "enter": "the north" }
55 up = { "vector": (0,0,1), "exit": "upward", "enter": "below" }
56 west = { "vector": (-1,0,0), "exit": "to the west", "enter": "the east" }
57