-
Notifications
You must be signed in to change notification settings - Fork 3
/
pol.cfg
353 lines (288 loc) · 9.07 KB
/
pol.cfg
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
#############################################################################
## Basic Configuration
#############################################################################
#
# Port and encryption settings now handled in UOCLIENT.CFG
#
#
# UoDataFileRoot: where the UO client files are located.
# Used by UOConvert.exe to find map, multi, tiledata, statics, etc. files.
#
UoDataFileRoot=/mnt/c/Games/Ultima Online Forgotten Lore
#
# Used to tell POL where to look for the realm data that was made by uoconvert.
# Defaults to 'realm/' from where pol.exe is started.
#
RealmDataPath=realm/
#
# RetainCleartextPasswords: If you select this, the server will save plain passwords
# in the accounts.txt file. If you set it to 0, all will be erased. You can get them back
# by changing this back to 1 and successfully logging into the account (for each account)
#
RetainCleartextPasswords=1
#############################################################################
## Logon and Logoff
#############################################################################
#
# MinCmdlevelToLogin: Only characters with this command level or higher
# log in. (0=player,5=admin)
#
MinCmdlevelToLogin=0
#
# InactivityWarningTimeout: Time in minutes until the user gets a "you are
# about to be disconnected" message
#
InactivityWarningTimeout=4
#
# InactivityDisconnectTimeout: Idle Time in minutes before the user is
# disconnected.
#
InactivityDisconnectTimeout=5
#
# MaximumClients: Sets the total number of clients allowed to connect at
# one time.
MaximumClients=300
#
# MaximumClientsBypassCmdLevel: Sets the character command level that bypasses the
# MaximumClients limiter
#
MaximumClientsBypassCmdLevel=1
#############################################################################
## System Profiling and Performance
#############################################################################
#
# LogLevel:
#
LogLevel=0
#
# DebugLevel:
#
DebugLevel=0
#
# WatchRPM: display the RPM counter to console every minute
#
WatchRPM=0
#
# WatchSysLoad: display the Sysload counter to console every minute
#
WatchSysLoad=0
#
# LogSysLoad: log sysload to pol.log every minute
#
LogSysLoad=0
#
# LogScriptCycles: Write profiling information on scripts to pol.log on exit
#
LogScriptCycles=0
#
# RunawayScriptThreshold: a script executing this many instructions without
# sleeping will be reported as a runaway script
#
RunawayScriptThreshold=10000
#
# ReportRunToCompletionScripts: Print "run to completion" scripts that are running
#
ReportRunToCompletionScripts=0
#
# ReportCriticalScripts: Print "critical" scripts that are running
#
ReportCriticalScripts=0
#
# MaxCallDepth: Maximum function call depth for scripts
#
MaxCallDepth=100
#
# ShowRealmInfo: Reports realms and their number of mobiles, offline chars,
# top-level items and multis to the console
#
ShowRealmInfo=1
#############################################################################
## Debugging
#############################################################################
#
# DebugPort: TCP/IP port to listen for debugger connections
#
DebugPort=2593
#
# DebugPassword: Password for debugging
# If none is specified, no password is required.
DebugPassword=debugme
#
# DebugLocalOnly: Only allow access from localhost
#
DebugLocalOnly=1
#
# CacheInteractiveScripts: if 0, always load interactive scripts from disk
# Useful for script development
#
CacheInteractiveScripts=1
#
# EnableAssertions: For Linux build only, enable core assertions
#
EnableAssertions=0
#
# AssertionFailureAction
# abort/continue/shutdown/shutdown-nosave
# abort: (like old behavior) aborts immediately, without saving data.
# continue: allows execution to continue.
# shutdown: attempts graceful shutdown
# shutdown-nosave: attempts graceful shutdown, without saving data.
#
AssertionFailureAction=abort
#
# DumpStackOnAssertionFailure: will cause a stack backtrace to be generated when any assertion fails.
#
DumpStackOnAssertionFailure=1
#
# EnableDebugLog: Enable the script debug log (formerly known as pol.lg2)
#
EnableDebugLog=0
#
# MiniDumpType: type of crash dump created. values: small (default) or large.
# Case sensative.
#
MiniDumpType=small
#
# DisplayUnknownPackets: If a packet is unknown, it will be reported to the console.
#
DisplayUnknownPackets=1
#
# Verbose: Reports all incoming packets.
#
Verbose=0
#
# ShowSpeechColors: If enabled, reports the speech colors clients are using when they talk.
#
ShowSpeechColors=0
#############################################################################
## Reporting System for Program Aborts
#############################################################################
#
# ReportCrashsAutomatically: for Linux build only, enable reporting system
#
ReportCrashsAutomatically=0
#
# ReportAdminEmail: the email address which should be used to contact the shard admin
#
ReportAdminEmail=anonymous
#
# ReportServer: the host name of the bug tracking server
#
ReportServer=polserver.com
#
# ReportURL: the URL which is called in case of a program abort
#
ReportURL=/pol/report_program_abort.php
#############################################################################
## Integrated Web Server
#############################################################################
#
# WebServer: in multithread mode only, run the internal web server
# This may be a security risk. It's susceptible to DoS attacks.
# If someone knows a little about TCP/IP, they could cause you
# trouble if it's enabled.
#
WebServer=0
#
# WebServerPort: What TCP/IP port to listen for web requests
#
WebServerPort=5000
#
# WebServerLocalOnly: Only allow access from localhost
#
WebServerLocalOnly=0
#
# WebServerDebug: Print trace information about http requests
#
WebServerDebug=0
#
# WebServerPassword: username/password required for access to the web server.
# If not specified, no password is required.
# WebServerPassword=username:password
#
WebServerPassword=
#############################################################################
## System Load and Save
#############################################################################
#
# CheckIntegrity: check for duplicate objects on startup
#
CheckIntegrity=1
#
# IgnoreLoadErrors: force load to continue even if object creations fail
# or containers cannot be found.
#
IgnoreLoadErrors=1
#
# InhibitSaves: Don't ever save world state
#
InhibitSaves=0
#
# AccountDataSave:
# -1 : old behaviour, saves accounts.txt immediately after an account change
# 0 : saves only during worldsave (if needed)
# >0 : saves every X seconds and during worldsave (if needed)
#
AccountDataSave=-1
#############################################################################
## Features
#############################################################################
#
# RequireSpellbooks: Require spellbooks for casting (in hand or in pack)
#
RequireSpellbooks=0
#
# EnableSecureTrading: if you enable this, see changes.txt regarding an entry
# that MUST be added to config/itemdesc.cfg
#
EnableSecureTrading=1
# MaxTileID: accepted values are
# For clients older than Stygian Abyss Expansion <0x3FFF>
# For Stygian Abyss Clients <0x7FFF>
# For High Seas Adventures clients <0xFFFF>
# Default <0x3FFF>
MaxTileID=0xFFFF
# MaxObjtype
# Can be any value between 0x20000 and 0xFFFFFFFF Default is 0xFFFFFFFF
MaxObjtype=0xFFFFFFFF
# EnforceMountObjtype: ensures that only items with the mount objtype defined
# in extobj.cfg (default 0x1F021) can be equipped in the
# character as a mount (Default false)
EnforceMountObjtype=1
#
# AllowedEnvironmentVariablesAccess <comma separate list> or *
# Enable/Disable os::GetEnvironmentVariable module function
# When *, all variables are allowed
# When a list, scripts are only allowed to access these specified variables (case-insensitive).
# Default is empty, allowing no variable access.
#
AllowedEnvironmentVariablesAccess=OPENAI_KEY
#############################################################################
## Experimental Options - Modify at your own risk
#############################################################################
#
# ExpLosChecksMap - prevents stuff like arrows from going through the 'black'
# areas in dungeons.
#
ExpLosChecksMap=1
#
# DisableNagle -
# 0 - old style, no changes
# 1 - disable Nagle's algorithm, might reduce connection latency
#
DisableNagle=0
#############################################################################
## Treading Settings - Do not modify unless necessary.
#############################################################################
#
# Multithread: use multiple threads to lower CPU usage
# If you are using Linux 2.4.*, set this to 1.
#
Multithread=1
#
# SelectTimeout: I/O sleep time
# Set to 0 for a dedicated server.
# Set to 10 for a non-dedicated server.
# Has no effect in multithread mode
#
SelectTimeout=10