Imported from archive.
[mudpy.git] / mudpy.conf
index fdacfe1..280368a 100644 (file)
@@ -18,6 +18,11 @@ punctuation_say = .
 max_avatars = 7
 password_tries = 3
 
+[internal:logging]
+#file = mudpy.log
+stdout = yes
+#syslog = mudpy
+
 [internal:network]
 host = 
 port = 6669
@@ -34,3 +39,11 @@ frequency_log = 6000
 frequency_save = 600
 increment = 0.1
 
+[internal:directions]
+down = { "vector": (0,0,-1), "exit": "downward", "enter": "above" }
+east = { "vector": (1,0,0), "exit": "to the east", "enter": "the west" }
+north = { "vector": (0,1,0), "exit": "to the north", "enter": "the south" }
+south = { "vector": (0,-1,0), "exit": "to the south", "enter": "the north" }
+up = { "vector": (0,0,1), "exit": "upward", "enter": "below" }
+west = { "vector": (-1,0,0), "exit": "to the west", "enter": "the east" }
+