diff options
author | Teravus Ovares | 2008-05-30 12:27:06 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-05-30 12:27:06 +0000 |
commit | 1a47ff8094ee414a47aebd310826906d89428a09 (patch) | |
tree | 0e90b3a33f43ff8617a077bb57b86d6b28e63e71 /bin/OpenSim.ini.example | |
parent | * Fixed a dangling event hook that I added. (diff) | |
download | opensim-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.example | 37 |
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" | |||
535 | ImportOnStartup = false | 535 | ImportOnStartup = false |
536 | Autosave = false | 536 | Autosave = false |
537 | AutoSavePeriod = 15 ; Number of minutes between autosave backups | 537 | AutoSavePeriod = 15 ; Number of minutes between autosave backups |
538 | |||
539 | |||
540 | [XEngine] | ||
541 | ; How many threads to keep alive even if nothing is happening | ||
542 | MinThreads = 2 | ||
543 | ; How many threads to start at maximum load | ||
544 | MaxThreads = 100 | ||
545 | ; Time a thread must be idle (in seconds) before it dies | ||
546 | IdleTimeout = 60 | ||
547 | ; Thread priority ("Lowest", "BelowNormal", "Normal", "AboveNormal", "Highest") | ||
548 | Priority = "BelowNormal" | ||
549 | ; Maximum number of events to queue for a script (excluding timers) | ||
550 | MaxScriptEventQueue = 300 | ||
551 | ; Stack size per thread created | ||
552 | ThreadStackSize = 262144 | ||
553 | ; Rate to poll for asynchronous command replies (ms) | ||
554 | AsyncLLCommandLoopms = 50 | ||
555 | ; Save the source of all compiled scripts | ||
556 | WriteScriptSourceToDebugFile = false | ||
557 | ; Default language for scripts | ||
558 | DefaultCompileLanguage = lsl | ||
559 | ; List of allowed languages (lsl,vb,js,cs) | ||
560 | AllowedCompilers = lsl | ||
561 | ; Compile debug info (line numbers) into the script assemblies | ||
562 | CompileWithDebugInformation = true | ||
563 | ; Allow the use of os* functions (some are dangerous) | ||
564 | AllowOSFunctions = false | ||
565 | ; Interval (s) between background save of script states | ||
566 | SaveInterval = 120 | ||
567 | ; Interval (s) between maintenance runs (0 = disable) | ||
568 | MaintenanceInterval = 10 | ||
569 | ; Time a script can spend in an event handler before it is interrupted | ||
570 | EventLimit = 30 | ||
571 | ; If a script overruns it's event limit, kill the script? | ||
572 | KillTimedOutScripts = false | ||
573 | ; Allow OS console command functionality (VERY DANGEROUS!!) | ||
574 | AllowosConsoleCommand = false \ No newline at end of file | ||