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 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:process]
32 #daemon = yes
33 pidfile = mudpy.pid
34
35 [internal:time]
36 definition_d = 24h
37 definition_h = 60mi
38 definition_mi = 10r
39 definition_mo = 28d
40 definition_r = 6
41 definition_w = 7d
42 definition_y = 12mo
43 frequency_log = 6000
44 frequency_save = 600
45 increment = 0.1
46
47 [internal:directions]
48 down = { "vector": (0,0,-1), "exit": "downward", "enter": "above" }
49 east = { "vector": (1,0,0), "exit": "to the east", "enter": "the west" }
50 north = { "vector": (0,1,0), "exit": "to the north", "enter": "the south" }
51 south = { "vector": (0,-1,0), "exit": "to the south", "enter": "the north" }
52 up = { "vector": (0,0,1), "exit": "upward", "enter": "below" }
53 west = { "vector": (-1,0,0), "exit": "to the west", "enter": "the east" }
54