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" }
3 include_files = ["example", "template"]
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 max_avatars = 7
19 password_tries = 3
20
21 [internal:logging]
22 #file = mudpy.log
23 stdout = yes
24 #syslog = mudpy
25
26 [internal:network]
27 host = 
28 port = 6669
29
30 [internal:time]
31 definition_d = 24h
32 definition_h = 60mi
33 definition_mi = 10r
34 definition_mo = 28d
35 definition_r = 6
36 definition_w = 7d
37 definition_y = 12mo
38 frequency_log = 6000
39 frequency_save = 600
40 increment = 0.1
41
42 [internal:directions]
43 down = { "vector": (0,0,-1), "exit": "downward", "enter": "above" }
44 east = { "vector": (1,0,0), "exit": "to the east", "enter": "the west" }
45 north = { "vector": (0,1,0), "exit": "to the north", "enter": "the south" }
46 south = { "vector": (0,-1,0), "exit": "to the south", "enter": "the north" }
47 up = { "vector": (0,0,1), "exit": "upward", "enter": "below" }
48 west = { "vector": (-1,0,0), "exit": "to the west", "enter": "the east" }
49