-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathneolith.conf
More file actions
91 lines (67 loc) · 2.61 KB
/
neolith.conf
File metadata and controls
91 lines (67 loc) · 2.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
MudlibDir /home/taedlar/github/es2_mudlib/mudlib
# Name of the MUD which is available to LPC as global symbol MUD_NAME.
MudName Eastern Stories II
# The TCP port that accepts user connections.
# You can specify up to 5 ports at the same time. The port number is followed
# by the protocol which can be one of:
# telnet
# ascii
# binary
Port 4000:telnet
# Directory path of the mudlib. The path must be specified in full-path.
# Directory path of log files. The path must be specified in full-path
# (This is different from MudOS, and you can use a directory not in mudlib
# to prvent MUD users seeing the contents of log files).
LogDir /home/taedlar/github/es2_mudlib/mudlib/log
# File name of the driver's debug log. If no debug log filename is specified,
# the driver writes debug message to stderr.
DebugLogFile debug.log
# Prefix debug log messages with date.
LogWithDate Yes
# Create core dump when the driver crashes.
CrashDropCore Yes
# Default header search path of LPC programs. You can specifiy multiple
# paths by seperate them with colon (:) characters.
IncludeDir /include
# A default header that is implicitly included by all LPC programs.
GlobalInclude <globals.h>
# The path to save LPC objects with #pragma save_binary directive.
SaveBinaryDir /bin
# The path of the master object.
MasterFile /adm/obj/master.c
# The path of simul_efun object.
SimulEfunFile /adm/obj/simul_efun.c
# The error message shown to current user when a LPC runtime error occurs.
DefaultErrorMsg Oops, you feel something weird just happend.
# The default fail message when user command cannot be processed successfully.
DefaultFailMsg What?
# The duration (in seconds) before an idle LPC object's clean_up() function is
# called.
CleanupDuration 600
# The duration (in seconds) when the reset() function is called in LPC obejcts.
ResetDuration 1800
# Max inheritance depth of LPC objects.
MaxInheritDepth 30
# Max evaluation cost of LPC functions.
MaxEvaluationCost 1000000
# Max size of LPC data types.
MaxArraySize 15000
MaxMappingSize 15000
MaxBufferSize 400000
MaxStringLength 200000
MaxBitFieldBits 1200
# Max size of data transfered from socket or file.
MaxByteTransfer 10000
MaxReadFileSize 200000
# Size of string hash table.
SharedStringHashSize 20011
ObjectHashSize 10007
# Size of program stack when evaluating LPC functions.
StackSize 1000
# Max number of local varables in LPC function.
MaxLocalVariables 25
# Max depths of LPC function calls, to exit from recursive functions.
MaxCallDepth 50
# Include arguments and local variables in the trace message for error handlers.
ArgumentsInTrace Yes
LocalVariablesInTrace Yes