aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/config.preview.donotuseyet/region/scripting/engines/xengine.ini.example
diff options
context:
space:
mode:
Diffstat (limited to 'bin/config.preview.donotuseyet/region/scripting/engines/xengine.ini.example')
-rw-r--r--bin/config.preview.donotuseyet/region/scripting/engines/xengine.ini.example88
1 files changed, 0 insertions, 88 deletions
diff --git a/bin/config.preview.donotuseyet/region/scripting/engines/xengine.ini.example b/bin/config.preview.donotuseyet/region/scripting/engines/xengine.ini.example
deleted file mode 100644
index b65e422..0000000
--- a/bin/config.preview.donotuseyet/region/scripting/engines/xengine.ini.example
+++ /dev/null
@@ -1,88 +0,0 @@
1; This file shows initialization defaults for OpenSimulator. If you want to override these
2; please copy/rename this file from .ini.example file to .ini. For example
3;
4; chat.ini.example => chat.ini
5;
6; or you can copy and paste the settings from this file directly to bin/OpenSim.ini
7;
8
9[XEngine]
10 ; Enable this engine in this OpenSim instance
11 Enabled = true
12
13 ; How many threads to keep alive even if nothing is happening
14 MinThreads = 2
15
16 ; How many threads to start at maximum load
17 MaxThreads = 100
18
19 ; Time a thread must be idle (in seconds) before it dies
20 IdleTimeout = 60
21
22 ; Thread priority ("Lowest", "BelowNormal", "Normal", "AboveNormal", "Highest")
23 Priority = "BelowNormal"
24
25 ; Maximum number of events to queue for a script (excluding timers)
26 MaxScriptEventQueue = 300
27
28 ; Stack size per thread created
29 ThreadStackSize = 262144
30
31 ; Rate to poll for asynchronous command replies (ms)
32 ; currently unused
33 ;AsyncLLCommandLoopms = 50
34
35 ; Save the source of all compiled scripts
36 WriteScriptSourceToDebugFile = false
37
38 ; Default language for scripts
39 DefaultCompileLanguage = lsl
40
41 ; List of allowed languages (lsl,vb,js,cs)
42 ; AllowedCompilers=lsl,cs,js,vb.
43 ; *warning*, non lsl languages have access to static methods such as System.IO.File. Enable at your own risk.
44 AllowedCompilers=lsl
45
46 ; Compile debug info (line numbers) into the script assemblies
47 CompileWithDebugInformation = true
48
49 ; Allow the use of os* functions (some are dangerous)
50 AllowOSFunctions = false
51
52 ; Threat level to allow, one of None, VeryLow, Low, Moderate, High, VeryHigh, Severe
53 OSFunctionThreatLevel = VeryLow
54
55 ; Interval (s) between background save of script states
56 SaveInterval = 120
57
58 ; Interval (s) between maintenance runs (0 = disable)
59 MaintenanceInterval = 10
60
61 ; Time a script can spend in an event handler before it is interrupted
62 EventLimit = 30
63
64 ; If a script overruns it's event limit, kill the script?
65 KillTimedOutScripts = false
66
67 ; Sets the multiplier for the scripting delays
68 ScriptDelayFactor = 1.0
69
70 ; The factor the 10 m distances llimits are multiplied by
71 ScriptDistanceLimitFactor = 1.0
72
73 ; OS Functions enable/disable
74 ; For each function, you can add one line, as shown
75 ; The default for all functions allows them if below threat level
76
77 ; true allows the use of the function unconditionally
78 ; Allow_osSetRegionWaterHeight = true
79
80 ; false disables the function completely
81 ; Allow_osSetRegionWaterHeight = false
82
83 ; Comma separated list of UUIDS allows the function for that list of UUIDS
84 ; Allow_osSetRegionWaterHeight = 888760cb-a3cf-43ac-8ea4-8732fd3ee2bb
85
86 ; Allow for llCreateLink and llBreakLink to work without asking for permission
87 ; only enable this in a trusted environment otherwise you may be subject to hijacking
88 ; AutomaticLinkPermission = false