Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.24 KB | None | 0 0
  1. [XEngine]
  2. ; Enable this engine in this OpenSim instance
  3. Enabled = true
  4.  
  5. ; How many threads to keep alive even if nothing is happening
  6. MinThreads = 2
  7.  
  8. ; How many threads to start at maximum load
  9. MaxThreads = 100
  10.  
  11. ; Time a thread must be idle (in seconds) before it dies
  12. IdleTimeout = 60
  13.  
  14. ; Thread priority ("Lowest", "BelowNormal", "Normal", "AboveNormal", "Highest")
  15. Priority = "BelowNormal"
  16.  
  17. ; Maximum number of events to queue for a script (excluding timers)
  18. MaxScriptEventQueue = 300
  19.  
  20. ; Stack size per thread created
  21. ThreadStackSize = 262144
  22.  
  23. ; Set this to true (the default) to load each script into a separate
  24. ; AppDomain. Setting this to false will load all script assemblies into the
  25. ; current AppDomain, which will reduce the per-script overhead at the
  26. ; expense of reduced security and the inability to garbage collect the
  27. ; script assemblies
  28. AppDomainLoading = true
  29.  
  30. ; Rate to poll for asynchronous command replies (ms)
  31. ; currently unused
  32. ;AsyncLLCommandLoopms = 50
  33.  
  34. ; Save the source of all compiled scripts
  35. WriteScriptSourceToDebugFile = false
  36.  
  37. ; Default language for scripts
  38. DefaultCompileLanguage = lsl
  39.  
  40. ; List of allowed languages (lsl,vb,js,cs)
  41. ; AllowedCompilers=lsl,cs,js,vb.
  42. ; *warning*, non lsl languages have access to static methods such as System.IO.File. Enable at your own risk.
  43. AllowedCompilers=lsl
  44.  
  45. ; Compile debug info (line numbers) into the script assemblies
  46. CompileWithDebugInformation = true
  47.  
  48. ; Allow the user of mod* functions. This allows a script to pass messages
  49. ; to a region module via the modSendCommand() function
  50. ; Default is false
  51. AllowMODFunctions = false
  52.  
  53. ; Allow the use of os* functions (some are dangerous)
  54. AllowOSFunctions = true
  55.  
  56. ; Threat level to allow, one of None, VeryLow, Low, Moderate, High, VeryHigh, Severe
  57. OSFunctionThreatLevel = VeryHigh
  58.  
  59. ; Interval (s) between background save of script states
  60. SaveInterval = 120
  61.  
  62. ; Interval (s) between maintenance runs (0 = disable)
  63. MaintenanceInterval = 10
  64.  
  65. ; Time a script can spend in an event handler before it is interrupted
  66. EventLimit = 30
  67.  
  68. ; If a script overruns it's event limit, kill the script?
  69. KillTimedOutScripts = false
  70.  
  71. ; Sets the multiplier for the scripting delays
  72. ScriptDelayFactor = 1.0
  73.  
  74. ; The factor the 10 m distances llimits are multiplied by
  75. ScriptDistanceLimitFactor = 1.0
  76.  
  77. ; Maximum length of notecard line read
  78. ; Increasing this to large values potentially opens
  79. ; up the system to malicious scripters
  80. ; NotecardLineReadCharsMax = 255
  81.  
  82. ; Sensor settings
  83. SensorMaxRange = 96.0
  84. SensorMaxResults = 16
  85.  
  86. ; OS Functions enable/disable
  87. ; For each function, you can add one line, as shown
  88. ; The default for all functions allows them if below threat level
  89.  
  90. ; true allows the use of the function unconditionally
  91. ; Allow_osSetRegionWaterHeight = true
  92.  
  93. ; false disables the function completely
  94. ; Allow_osSetRegionWaterHeight = false
  95.  
  96. ; Comma separated list of UUIDS allows the function for that list of UUIDS
  97. ; Allow_osSetRegionWaterHeight = 888760cb-a3cf-43ac-8ea4-8732fd3ee2bb
  98.  
  99. Allow_osGetCurrentSunHour = true
  100. Allow_osSunGetParam = true
  101. Allow_osSunSetParam = true
  102. Allow_osWindActiveModelPluginName = true
  103. Allow_osMovePen = true
  104. Allow_osDrawLine = true
  105. Allow_osDrawText = true
  106. Allow_osDrawEllipse = true
  107. Allow_osDrawRectangle = true
  108. Allow_osDrawFilledRectangle = true
  109. Allow_osSetFontSize = true
  110. Allow_osSetPenSize = true
  111. Allow_osSetPenColour = true
  112. Allow_osDrawImage = true
  113. Allow_osGetAgents = true
  114. Allow_osTerrainGetHeight = true
  115. Allow_osParseJSON = true
  116. Allow_osDrawFilledPolygon = true
  117. Allow_osSetPenCap = true
  118. Allow_osSetFontName = true
  119. Allow_osGetMapTexture = true
  120. ;
  121. ; **** THREAT LEVEL Nuisance Block ****
  122. Allow_osSetRegionSunSettings = false
  123. Allow_osSetEstateSunSettings = false
  124. ;
  125. ; **** THREAT LEVEL VeryLow Block ****
  126. Allow_osTerrainFlush = false
  127. Allow_osSetPrimFloatOnWater = true
  128. Allow_osSetDynamicTextureURL = true
  129. Allow_osSetDynamicTextureURLBlend = true
  130. Allow_osSetDynamicTextureURLBlendFace = true
  131. Allow_osSetDynamicTextureData = true
  132. Allow_osSetDynamicTextureDataBlend = true
  133. Allow_osSetDynamicTextureDataBlendFace = true
  134. Allow_osGetDrawStringSize = true
  135. Allow_osWindParamSet = true
  136. Allow_osWindParamGet = true
  137. Allow_osSetParcelMediaURL = true
  138. ;
  139. ; **** THREAT LEVEL Low Block ****
  140. Allow_osMessageObject = true
  141. Allow_osAvatarName2Key = true
  142. Allow_osKey2Name = true
  143. Allow_osFormatString = true
  144. Allow_osLoadedCreationDate = false
  145. Allow_osLoadedCreationTime = false
  146. Allow_osLoadedCreationID = false
  147. ;
  148. ; **** THREAT LEVEL Moderate ****
  149. Allow_osGetGridNick = true
  150. Allow_osGetGridName = true
  151. Allow_osGetGridLoginURI = true
  152. Allow_osGetRegionStats = true ;NEW @ rd39c30 - r11601
  153. ;
  154. ; **** THREAT LEVEL HIGH Block ****
  155. Allow_osTeleportAgent = true
  156. Allow_osMakeNotecard = true
  157. Allow_osMatchString = false
  158. Allow_osTerrainSetHeight = false
  159. Allow_osRegionRestart = false
  160. Allow_osGetAgentIP = false
  161. Allow_osSetRegionWaterHeight = false
  162. Allow_osGetScriptEngineName = false
  163. Allow_osGetRegionMapTexture = false ; osGetRegionMapTexture(string regionName)
  164. ;
  165. ; **** THREAT LEVEL VeryHigh Block ****
  166. Allow_osRegionNotice = false
  167. Allow_osSetRot = false
  168. Allow_osAvatarPlayAnimation = false
  169. Allow_osAvatarStopAnimation = false
  170. Allow_osGetNotecardLine = false
  171. Allow_osGetNotecard = false
  172. Allow_osGetNumberOfNotecardLines = false
  173. ;
  174. ; **** THREAT LEVEL Severe Block****
  175. Allow_osGetSimulatorVersion = true
  176. Allow_osConsoleCommand = 00000000-0000-0000-0000-000000000000; ! USE ONLY WITH REGION OPERATORS UUID !
  177. ; Allow for llCreateLink and llBreakLink to work without asking for permission
  178. ; only enable this in a trusted environment otherwise you may be subject to hijacking
  179. ; AutomaticLinkPermission = false
  180.  
  181. ; Disable underground movement of prims (default true); set to
  182. ; false to allow script controlled underground positioning of
  183. ; prims
  184. ; DisableUndergroundMovement = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement