Rename internal:limits element to .mudpy.limit
[mudpy.git] / etc / mudpy.yaml
1 # Copyright (c) 2004-2016 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.yaml", "actor": "actor.yaml", "area": "area.yaml", "command": "command.yaml", "internal": "internal.yaml", "menu": "menu.yaml", "other": "other.yaml", "prop": "prop.yaml" }
7     include_dirs: [ "sample" ]
8     include_files: [ "archetype.yaml" ]
9     private_files: [ "account.yaml" ]
10     read_only: yes
11
12 .mudpy.linguistic.actions: { "?": "ask", ",": "begin", "-": "begin", ":": "begin", ";": "begin", "!": "exclaim", "...": "muse", ".": "say" }
13 .mudpy.linguistic.default_punctuation: .
14 .mudpy.linguistic.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 #.mudpy.limit.admins: [ admin ]
17 .mudpy.limit.avatars: 7
18 #.mudpy.limit.backups: 10
19 .mudpy.limit.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: ::1
29     #host: 127.0.0.1
30     port: 6669
31
32 internal:process:
33     #daemon: yes
34     #pidfile: mudpy.pid
35
36 internal:storage:
37     default_dir: "data"
38     #root_path: "."
39     search_path: [ "", "etc", "share", "data" ]
40
41 internal:time:
42     definition_d: 24h
43     definition_h: 60mi
44     definition_mi: 10r
45     definition_mo: 28d
46     definition_r: 6
47     definition_w: 7d
48     definition_y: 12mo
49     frequency_log: 6000
50     frequency_save: 600
51     linkdead: { "default": 6000, "entering_account_name": 600, "active": 6048000 }
52     idle: { "default": 5000, "entering_account_name": 500, "active": 5040000 }
53     increment: 0.1
54
55 internal:directions:
56     down: { "vector": [0,0,-1], "exit": "downward", "enter": "above" }
57     east: { "vector": [1,0,0], "exit": "to the east", "enter": "the west" }
58     north: { "vector": [0,1,0], "exit": "to the north", "enter": "the south" }
59     south: { "vector": [0,-1,0], "exit": "to the south", "enter": "the north" }
60     up: { "vector": [0,0,1], "exit": "upward", "enter": "below" }
61     west: { "vector": [-1,0,0], "exit": "to the west", "enter": "the east" }