0ef7482fc0eaa4f7ac770a15d9315504f4666812
[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 capitalize_words = [ "i", "i'd", "i'll", "i'm" ]
9 default_punctuation = .
10 punctuation_ask = ?
11 punctuation_begin = [ ",", "-", ":", ";" ]
12 punctuation_exclaim = !
13 punctuation_muse = ...
14 punctuation_say = .
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 increment = 0.1
47
48 [internal:directions]
49 down = { "vector": (0,0,-1), "exit": "downward", "enter": "above" }
50 east = { "vector": (1,0,0), "exit": "to the east", "enter": "the west" }
51 north = { "vector": (0,1,0), "exit": "to the north", "enter": "the south" }
52 south = { "vector": (0,-1,0), "exit": "to the south", "enter": "the north" }
53 up = { "vector": (0,0,1), "exit": "upward", "enter": "below" }
54 west = { "vector": (-1,0,0), "exit": "to the west", "enter": "the east" }
55