X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=blobdiff_plain;f=mudpy.conf;h=280368a14fb068c03a5810380b23ba1259b8587f;hp=fdacfe14c00db93337f7f3dc110e1353f293abb1;hb=89ff278697fb215e01b34bebe85b18d8db3af44d;hpb=727a0b93665896586d2ff48aedce818c781912de diff --git a/mudpy.conf b/mudpy.conf index fdacfe1..280368a 100644 --- a/mudpy.conf +++ b/mudpy.conf @@ -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" } +