osslEnable.ini 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. ; Enable OSSL functions.
  2. ; Including this file in a region's set of INI files, causes the OpenSimulator
  3. ; specific functions to be enabled.
  4. ; See http://opensimulator.org/wiki/OSSL for a description of OSSL functions and
  5. ; refer to http://opensimulator.org/wiki/OSSL_Implemented for a list of functions.
  6. ; The below file lists all the functions and specifies who has permission to
  7. ; execute the function. Some of the functions are for maintainance or can be
  8. ; mis-used so the permission to execute a function can be limited. Ability to
  9. ; execute a function is based on the owner of the prim holding the script.
  10. [XEngine]
  11. ; Allow the use of os* functions (some are dangerous)
  12. AllowOSFunctions = true
  13. ; Allow the user of mod* functions. This allows a script to pass messages
  14. ; to a region module via the modSendCommand() function and is used by some
  15. ; modules to extend the scripting language.
  16. AllowMODFunctions = true
  17. ; Allow the use of LightShare functions.
  18. ; The setting enable_windlight = true must also be enabled in the [LightShare] section.
  19. AllowLightShareFunctions = true
  20. ; Threat level to allow. One of None, VeryLow, Low, Moderate, High, VeryHigh, Severe.
  21. ; See http://opensimulator.org/wiki/Threat_level for more information on these levels.
  22. ; This is the default level and can be overridden with the Allow_ specifications.
  23. ; Blanket enabling the ossl functions is dangerous and we do not recommend setting higher
  24. ; than 'Low' unless you have a high level of trust in all the users that can run scripts
  25. ; in your simulator. It is safer to explicitly allow certain types of user to run
  26. ; higher threat level OSSL functions, as detailed later on.
  27. OSFunctionThreatLevel = VeryLow
  28. ; Some of the OSSL functions can be enabled or disabled individually.
  29. ; To disable, set the value to 'false'.
  30. ; To enable for everyone, set the value to 'true'.
  31. ; To enable for individuals or groups, set it to a comma separated list. This checks
  32. ; against the owner of the object containing the script.
  33. ; The comma separated entries in the list may be one of:
  34. ; "GRID_GOD" -- enable for users with UserLevel >= 200
  35. ; "GOD" -- enable for users with rights to be god (local or grid)
  36. ; "ACTIVE_GOD" -- enable for users that are present and with active god power
  37. ; "ESTATE_MANAGER" -- enable for estate manager
  38. ; "ESTATE_OWNER" -- enable for estate owner
  39. ; "PARCEL_OWNER" -- enable for parcel owner
  40. ; "PARCEL_GROUP_MEMBER" -- enable for any member of the parcel group
  41. ; uuid -- enable for specified ID (may be avatar or group ID)
  42. ; from this we can also create macros that can be include in the list as
  43. ; ${XEngine|macroname} see examples below
  44. ; parcel macros
  45. ; Allowing ossl functions for anyone owning a parcel can be dangerous especially if
  46. ; a region is selling or otherwise giving away parcel ownership. By default, parcel
  47. ; ownership or group membership does not enable OSSL functions. Uncomment the
  48. ; appropriate line below to allow parcel ownership and groups to do restricted
  49. ; OSSL functions. It might be better to check the list below and edit the ones
  50. ; to enable individually.
  51. osslParcelO = ""
  52. osslParcelOG = ""
  53. ; osslParcelO = "PARCEL_OWNER,"
  54. ; osslParcelOG = "PARCEL_GROUP_MEMBER,PARCEL_OWNER,"
  55. ; NPC macros
  56. ; These can be mis-used so limit use to those you can trust.
  57. osslNPC = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  58. ; The OSSL function name is prepended with "Allow_" and it checks against
  59. ; the owners of the containing prim. There can also be entries beginning with
  60. ; 'Creators_". The 'Creators_" parameters can only be a list of UUIDs and it is
  61. ; checked against the creator of the script itself.
  62. ; *************************************************
  63. ; ThreatLevel None
  64. Allow_osGetAgents = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  65. Allow_osGetAvatarList = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  66. Allow_osGetGender = true
  67. Allow_osGetHealth = true
  68. Allow_osGetHealRate = true
  69. Allow_osGetNPCList = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  70. Allow_osGetRezzingObject = true
  71. Allow_osNpcGetOwner = ${XEngine|osslNPC}
  72. Allow_osParseJSON = true
  73. Allow_osParseJSONNew = true
  74. Allow_osSetSunParam = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  75. Allow_osTeleportOwner = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  76. Allow_osWindActiveModelPluginName = true
  77. ; ThreatLevel Nuisance
  78. Allow_osSetEstateSunSettings = ESTATE_MANAGER,ESTATE_OWNER
  79. Allow_osSetRegionSunSettings = ESTATE_MANAGER,ESTATE_OWNER
  80. ; ThreatLevel VeryLow
  81. Allow_osEjectFromGroup = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  82. Allow_osForceBreakAllLinks = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  83. Allow_osForceBreakLink = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  84. Allow_osGetWindParam = true
  85. Allow_osInviteToGroup = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  86. Allow_osReplaceString = true
  87. Allow_osSetDynamicTextureData = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  88. Allow_osSetDynamicTextureDataFace = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  89. Allow_osSetDynamicTextureDataBlend = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  90. Allow_osSetDynamicTextureDataBlendFace = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  91. Allow_osSetDynamicTextureURL = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  92. Allow_osSetDynamicTextureURLBlend = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  93. Allow_osSetDynamicTextureURLBlendFace = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  94. Allow_osSetParcelMediaURL = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  95. Allow_osSetParcelSIPAddress = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  96. Allow_osSetPrimFloatOnWater = true
  97. Allow_osSetWindParam = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  98. Allow_osTerrainFlush = ESTATE_MANAGER,ESTATE_OWNER
  99. Allow_osUnixTimeToTimestamp = true
  100. ; ThreatLevel Low
  101. Allow_osAvatarName2Key = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  102. Allow_osFormatString = true
  103. Allow_osKey2Name = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  104. Allow_osListenRegex = true
  105. Allow_osLoadedCreationDate = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  106. Allow_osLoadedCreationID = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  107. Allow_osLoadedCreationTime = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  108. Allow_osMessageObject = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  109. Allow_osRegexIsMatch = true
  110. Allow_osGetAvatarHomeURI = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  111. Allow_osNpcSetProfileAbout = ${XEngine|osslNPC}
  112. Allow_osNpcSetProfileImage = ${XEngine|osslNPC}
  113. Allow_osDie = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  114. ; ThreatLevel Moderate
  115. Allow_osDropAttachment = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  116. Allow_osDropAttachmentAt = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  117. Allow_osGetGridCustom = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  118. Allow_osGetGridGatekeeperURI = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  119. Allow_osGetGridHomeURI = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  120. Allow_osGetGridLoginURI = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  121. Allow_osGetGridName = true
  122. Allow_osGetGridNick = true
  123. Allow_osGetNumberOfAttachments = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  124. Allow_osGetRegionStats = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  125. Allow_osGetSimulatorMemory = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  126. Allow_osGetSimulatorMemoryKB = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  127. Allow_osMessageAttachments = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  128. Allow_osSetSpeed = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  129. ; ThreatLevel High
  130. Allow_osCauseDamage = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  131. Allow_osCauseHealing = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  132. Allow_osSetHealth = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  133. Allow_osSetHealRate = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  134. Allow_osForceAttachToAvatar = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  135. Allow_osForceAttachToAvatarFromInventory = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  136. Allow_osForceCreateLink = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  137. Allow_osForceDropAttachment = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  138. Allow_osForceDropAttachmentAt = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  139. Allow_osGetLinkPrimitiveParams = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  140. Allow_osGetPhysicsEngineType = true
  141. Allow_osGetPrimitiveParams = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  142. Allow_osGetRegionMapTexture = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  143. Allow_osGetScriptEngineName = true
  144. Allow_osGetSimulatorVersion = true
  145. Allow_osMakeNotecard = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  146. Allow_osMatchString = true
  147. Allow_osNpcCreate = ${XEngine|osslNPC}
  148. Allow_osNpcGetPos = ${XEngine|osslNPC}
  149. Allow_osNpcGetRot = ${XEngine|osslNPC}
  150. Allow_osNpcLoadAppearance = ${XEngine|osslNPC}
  151. Allow_osNpcMoveTo = ${XEngine|osslNPC}
  152. Allow_osNpcMoveToTarget = ${XEngine|osslNPC}
  153. Allow_osNpcPlayAnimation = ${XEngine|osslNPC}
  154. Allow_osNpcRemove = ${XEngine|osslNPC}
  155. Allow_osNpcSaveAppearance = ${XEngine|osslNPC}
  156. Allow_osNpcSay = ${XEngine|osslNPC}
  157. Allow_osNpcSetRot = ${XEngine|osslNPC}
  158. Allow_osNpcShout = ${XEngine|osslNPC}
  159. Allow_osNpcSit = ${XEngine|osslNPC}
  160. Allow_osNpcStand = ${XEngine|osslNPC}
  161. Allow_osNpcStopAnimation = ${XEngine|osslNPC}
  162. Allow_osNpcStopMoveToTarget = ${XEngine|osslNPC}
  163. Allow_osNpcTouch = ${XEngine|osslNPC}
  164. Allow_osNpcWhisper = ${XEngine|osslNPC}
  165. Allow_osOwnerSaveAppearance = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  166. Allow_osParcelJoin = ESTATE_MANAGER,ESTATE_OWNER
  167. Allow_osParcelSubdivide = ESTATE_MANAGER,ESTATE_OWNER
  168. Allow_osRegionRestart = ESTATE_MANAGER,ESTATE_OWNER
  169. Allow_osSetContentType = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  170. Allow_osSetPrimitiveParams = false
  171. Allow_osSetProjectionParams = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  172. Allow_osSetRegionWaterHeight = ESTATE_MANAGER,ESTATE_OWNER
  173. Allow_osSetStateEvents = false ; deprecated
  174. Allow_osSetTerrainHeight = ESTATE_MANAGER,ESTATE_OWNER
  175. Allow_osSetTerrainTexture = ESTATE_MANAGER,ESTATE_OWNER
  176. Allow_osSetTerrainTextureHeight = ESTATE_MANAGER,ESTATE_OWNER
  177. ; ThreatLevel VeryHigh
  178. Allow_osAgentSaveAppearance = ESTATE_MANAGER,ESTATE_OWNER
  179. ; Warning: The next function allows scripts to force animations on avatars without the user giving permission.
  180. ; Enabling this can allow forced animations which can trigger traumatic episodes in vulnerable populations.
  181. ; Similar things can be said for several of the 'force' functions. Enable with care and control.
  182. ; Some of these were added as early functionality for NPCs. This has been replaced with the NPC functions.
  183. Allow_osAvatarPlayAnimation = false
  184. Allow_osAvatarStopAnimation = false
  185. Allow_osForceAttachToOtherAvatarFromInventory = false
  186. Allow_osForceDetachFromAvatar = false
  187. Allow_osForceOtherSit = false
  188. ; The notecard functions can cause a lot of load on the region if over used
  189. Allow_osGetNotecard = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  190. Allow_osGetNotecardLine = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  191. Allow_osGetNumberOfNotecardLines = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  192. Allow_osRegionNotice = ESTATE_MANAGER,ESTATE_OWNER
  193. Allow_osSetRot = false
  194. Allow_osSetParcelDetails = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  195. ; ThreatLevel Severe
  196. Allow_osConsoleCommand = false
  197. Allow_osGrantScriptPermissions = false
  198. Allow_osKickAvatar = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  199. Allow_osRevokeScriptPermissions = false
  200. Allow_osTeleportAgent = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  201. Allow_osTeleportObject = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  202. ; ThreatLevel Severe with additional internal restrictions
  203. Allow_osGetAgentIP = true ; always restricted to Administrators (true or false to disable)
  204. ; available functions out of Threat level control (for reference only)
  205. ; Allow_osCheckODE = true
  206. ; Allow_osClearInertia = true
  207. ; Allow_osCollisionSound = true
  208. ; Allow_osDrawEllipse = true
  209. ; Allow_osDrawFilledEllipse = true
  210. ; Allow_osDrawFilledPolygon = true
  211. ; Allow_osDrawFilledRectangle = true
  212. ; Allow_osDrawImage = true
  213. ; Allow_osDrawLine = true
  214. ; Allow_osDrawPolygon = true
  215. ; Allow_osDrawRectangle = true
  216. ; Allow_osDrawResetTransform = true
  217. ; Allow_osDrawRotationTransform = true
  218. ; Allow_osDrawScaleTransform = true
  219. ; Allow_osDrawText = true
  220. ; Allow_osDrawTranslationTransform = true
  221. ; Allow_osGetCurrentSunHour = true
  222. ; Allow_osGetInertiaData = true
  223. ; Allow_osGetInventoryDesc = true
  224. ; Allow_osGetLinkNumber = true
  225. ; Allow_osGetMapTexture = true
  226. ; Allow_osGetPhysicsEngineName = true
  227. ; Allow_osGetRegionSize = true
  228. ; Allow_osGetSunParam = true
  229. ; Allow_osGetTerrainHeight = true
  230. ; Allow_osGetDrawStringSize = true
  231. ; Allow_osIsNpc = true
  232. ; Allow_osIsUUID = true
  233. ; Allow_osList2Double = true
  234. ; Allow_osMax = true
  235. ; Allow_osMin = true
  236. ; Allow_osMovePen = true
  237. ; Allow_osSetFontName = true
  238. ; Allow_osSetFontSize = true
  239. ; Allow_osSetInertia = true
  240. ; Allow_osSetInertiaAsBox = true
  241. ; Allow_osSetInertiaAsSphere = true
  242. ; Allow_osSetInertiaAsCylinder = true
  243. ; Allow_osSetPenCap = true
  244. ; Allow_osSetPenColor = true
  245. ; Allow_osSetPenSize = true
  246. ; Allow_osVolumeDetect = true