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