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