aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/OpenSim.ini.example
diff options
context:
space:
mode:
authorTeravus Ovares2008-05-30 12:27:06 +0000
committerTeravus Ovares2008-05-30 12:27:06 +0000
commit1a47ff8094ee414a47aebd310826906d89428a09 (patch)
tree0e90b3a33f43ff8617a077bb57b86d6b28e63e71 /bin/OpenSim.ini.example
parent* Fixed a dangling event hook that I added. (diff)
downloadopensim-SC_OLD-1a47ff8094ee414a47aebd310826906d89428a09.zip
opensim-SC_OLD-1a47ff8094ee414a47aebd310826906d89428a09.tar.gz
opensim-SC_OLD-1a47ff8094ee414a47aebd310826906d89428a09.tar.bz2
opensim-SC_OLD-1a47ff8094ee414a47aebd310826906d89428a09.tar.xz
* This is Melanie's XEngine script engine. I've not tested this real well, however, it's confirmed to compile and OpenSimulator to run successfully without this script engine active.
Diffstat (limited to 'bin/OpenSim.ini.example')
-rw-r--r--bin/OpenSim.ini.example37
1 files changed, 37 insertions, 0 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example
index 817441d..d88018a 100644
--- a/bin/OpenSim.ini.example
+++ b/bin/OpenSim.ini.example
@@ -535,3 +535,40 @@ Password = "password"
535ImportOnStartup = false 535ImportOnStartup = false
536Autosave = false 536Autosave = false
537AutoSavePeriod = 15 ; Number of minutes between autosave backups 537AutoSavePeriod = 15 ; Number of minutes between autosave backups
538
539
540[XEngine]
541; How many threads to keep alive even if nothing is happening
542MinThreads = 2
543; How many threads to start at maximum load
544MaxThreads = 100
545; Time a thread must be idle (in seconds) before it dies
546IdleTimeout = 60
547; Thread priority ("Lowest", "BelowNormal", "Normal", "AboveNormal", "Highest")
548Priority = "BelowNormal"
549; Maximum number of events to queue for a script (excluding timers)
550MaxScriptEventQueue = 300
551; Stack size per thread created
552ThreadStackSize = 262144
553; Rate to poll for asynchronous command replies (ms)
554AsyncLLCommandLoopms = 50
555; Save the source of all compiled scripts
556WriteScriptSourceToDebugFile = false
557; Default language for scripts
558DefaultCompileLanguage = lsl
559; List of allowed languages (lsl,vb,js,cs)
560AllowedCompilers = lsl
561; Compile debug info (line numbers) into the script assemblies
562CompileWithDebugInformation = true
563; Allow the use of os* functions (some are dangerous)
564AllowOSFunctions = false
565; Interval (s) between background save of script states
566SaveInterval = 120
567; Interval (s) between maintenance runs (0 = disable)
568MaintenanceInterval = 10
569; Time a script can spend in an event handler before it is interrupted
570EventLimit = 30
571; If a script overruns it's event limit, kill the script?
572KillTimedOutScripts = false
573; Allow OS console command functionality (VERY DANGEROUS!!)
574AllowosConsoleCommand = false \ No newline at end of file