osslEnable.ini 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  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. ; Each 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. ; The OSSL function name is prepended with "Allow_" and it checks against
  43. ; the owners of the containing prim. There can also be entries beginning with
  44. ; 'Creators_". The 'Creators_" parameters can only be a list of UUIDs and it is
  45. ; checked against the creator of the script itself.
  46. ; Allowing ossl functions for anyone owning a parcel can be dangerous especially if
  47. ; a region is selling or otherwise giving away parcel ownership. By default, parcel
  48. ; ownership or group membership does not enable OSSL functions. Uncomment the
  49. ; appropriate line below to allow parcel ownership and groups to do restricted
  50. ; OSSL functions. It might be better to check the list below and edit the ones
  51. ; to enable individually.
  52. osslParcelO = ""
  53. osslParcelOG = ""
  54. ; osslParcelO = "PARCEL_OWNER,"
  55. ; osslParcelOG = "PARCEL_GROUP_MEMBER,PARCEL_OWNER,"
  56. ; There are a block of functions for creating and controlling NPCs.
  57. ; These can be mis-used so limit use to those you can trust.
  58. osslNPC = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  59. ; ThreatLevel None
  60. Allow_osDrawEllipse = true
  61. Allow_osDrawFilledPolygon = true
  62. Allow_osDrawFilledRectangle = true
  63. Allow_osDrawImage = true
  64. Allow_osDrawLine = true
  65. Allow_osDrawPolygon = true
  66. Allow_osDrawRectangle = true
  67. Allow_osDrawText = true
  68. Allow_osGetAgents = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  69. Allow_osGetAvatarList = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  70. Allow_osGetCurrentSunHour = true
  71. Allow_osGetGender = true
  72. Allow_osGetHealth = true
  73. Allow_osGetHealRate = true
  74. Allow_osGetInventoryDesc = true
  75. Allow_osGetMapTexture = true
  76. Allow_osGetRegionSize = true
  77. Allow_osGetRezzingObject = true
  78. Allow_osGetSunParam = true
  79. Allow_osGetTerrainHeight = true
  80. Allow_osIsNpc = true
  81. Allow_osIsUUID = true
  82. Allow_osList2Double = true
  83. Allow_osMax = true
  84. Allow_osMin = true
  85. Allow_osMovePen = true
  86. Allow_osNpcGetOwner = ${XEngine|osslNPC}
  87. Allow_osParseJSON = true
  88. Allow_osParseJSONNew = true
  89. Allow_osSetFontName = true
  90. Allow_osSetFontSize = true
  91. Allow_osSetPenCap = true
  92. Allow_osSetPenColor = true
  93. Allow_osSetPenSize = true
  94. Allow_osSetSunParam = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  95. Allow_osTeleportOwner = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  96. Allow_osWindActiveModelPluginName = true
  97. Allow_osCheckODE = true ; Here for completeness. This function cannot be turned off
  98. ; ThreatLevel Nuisance
  99. Allow_osSetEstateSunSettings = ESTATE_MANAGER,ESTATE_OWNER
  100. Allow_osSetRegionSunSettings = ESTATE_MANAGER,ESTATE_OWNER
  101. ; ThreatLevel VeryLow
  102. Allow_osEjectFromGroup = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  103. Allow_osForceBreakAllLinks = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  104. Allow_osForceBreakLink = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  105. Allow_osGetDrawStringSize = true
  106. Allow_osGetWindParam = true
  107. Allow_osInviteToGroup = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  108. Allow_osReplaceString = true
  109. Allow_osSetDynamicTextureData = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  110. Allow_osSetDynamicTextureDataBlend = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  111. Allow_osSetDynamicTextureDataBlendFace = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  112. Allow_osSetDynamicTextureURL = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  113. Allow_osSetDynamicTextureURLBlend = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  114. Allow_osSetDynamicTextureURLBlendFace = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  115. Allow_osSetParcelMediaURL = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  116. Allow_osSetParcelSIPAddress = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  117. Allow_osSetPrimFloatOnWater = true
  118. Allow_osSetWindParam = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  119. Allow_osTerrainFlush = ESTATE_MANAGER,ESTATE_OWNER
  120. Allow_osUnixTimeToTimestamp = true
  121. ; ThreatLevel Low
  122. Allow_osAvatarName2Key = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  123. Allow_osFormatString = true
  124. Allow_osKey2Name = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  125. Allow_osListenRegex = true
  126. Allow_osLoadedCreationDate = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  127. Allow_osLoadedCreationID = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  128. Allow_osLoadedCreationTime = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  129. Allow_osMessageObject = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  130. Allow_osRegexIsMatch = true
  131. Allow_osGetAvatarHomeURI = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  132. Allow_osNpcSetProfileAbout = ${XEngine|osslNPC}
  133. Allow_osNpcSetProfileImage = ${XEngine|osslNPC}
  134. Allow_osDie = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  135. ; ThreatLevel Moderate
  136. Allow_osDropAttachment = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  137. Allow_osDropAttachmentAt = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  138. Allow_osGetGridCustom = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  139. Allow_osGetGridGatekeeperURI = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  140. Allow_osGetGridHomeURI = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  141. Allow_osGetGridLoginURI = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  142. Allow_osGetGridName = true
  143. Allow_osGetGridNick = true
  144. Allow_osGetNumberOfAttachments = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  145. Allow_osGetRegionStats = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  146. Allow_osGetSimulatorMemory = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  147. Allow_osMessageAttachments = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  148. Allow_osSetSpeed = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  149. ; ThreatLevel High
  150. Allow_osCauseDamage = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  151. Allow_osCauseHealing = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  152. Allow_osSetHealth = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  153. Allow_osSetHealRate = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  154. Allow_osForceAttachToAvatar = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  155. Allow_osForceAttachToAvatarFromInventory = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  156. Allow_osForceCreateLink = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  157. Allow_osForceDropAttachment = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  158. Allow_osForceDropAttachmentAt = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  159. Allow_osGetAgentIP = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  160. Allow_osGetLinkPrimitiveParams = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  161. Allow_osGetPhysicsEngineType = true
  162. Allow_osGetPrimitiveParams = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  163. Allow_osGetRegionMapTexture = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  164. Allow_osGetScriptEngineName = true
  165. Allow_osGetSimulatorVersion = true
  166. Allow_osMakeNotecard = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  167. Allow_osMatchString = true
  168. Allow_osNpcCreate = ${XEngine|osslNPC}
  169. Allow_osNpcGetPos = ${XEngine|osslNPC}
  170. Allow_osNpcGetRot = ${XEngine|osslNPC}
  171. Allow_osNpcLoadAppearance = ${XEngine|osslNPC}
  172. Allow_osNpcMoveTo = ${XEngine|osslNPC}
  173. Allow_osNpcMoveToTarget = ${XEngine|osslNPC}
  174. Allow_osNpcPlayAnimation = ${XEngine|osslNPC}
  175. Allow_osNpcRemove = ${XEngine|osslNPC}
  176. Allow_osNpcSaveAppearance = ${XEngine|osslNPC}
  177. Allow_osNpcSay = ${XEngine|osslNPC}
  178. Allow_osNpcSetRot = ${XEngine|osslNPC}
  179. Allow_osNpcShout = ${XEngine|osslNPC}
  180. Allow_osNpcSit = ${XEngine|osslNPC}
  181. Allow_osNpcStand = ${XEngine|osslNPC}
  182. Allow_osNpcStopAnimation = ${XEngine|osslNPC}
  183. Allow_osNpcStopMoveToTarget = ${XEngine|osslNPC}
  184. Allow_osNpcTouch = ${XEngine|osslNPC}
  185. Allow_osNpcWhisper = ${XEngine|osslNPC}
  186. Allow_osOwnerSaveAppearance = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  187. Allow_osParcelJoin = ESTATE_MANAGER,ESTATE_OWNER
  188. Allow_osParcelSubdivide = ESTATE_MANAGER,ESTATE_OWNER
  189. Allow_osRegionRestart = ESTATE_MANAGER,ESTATE_OWNER
  190. Allow_osSetContentType = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  191. Allow_osSetPrimitiveParams = false
  192. Allow_osSetProjectionParams = ${XEngine|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
  193. Allow_osSetRegionWaterHeight = ESTATE_MANAGER,ESTATE_OWNER
  194. Allow_osSetStateEvents = false ; deprecated
  195. Allow_osSetTerrainHeight = ESTATE_MANAGER,ESTATE_OWNER
  196. Allow_osSetTerrainTexture = ESTATE_MANAGER,ESTATE_OWNER
  197. Allow_osSetTerrainTextureHeight = ESTATE_MANAGER,ESTATE_OWNER
  198. ; ThreatLevel VeryHigh
  199. Allow_osAgentSaveAppearance = ESTATE_MANAGER,ESTATE_OWNER
  200. ; Warning: The next function allows scripts to force animations on avatars without the user giving permission.
  201. ; Enabling this can allow forced animations which can trigger traumatic episodes in vulnerable populations.
  202. ; Similar things can be said for several of the 'force' functions. Enable with care and control.
  203. ; Some of these were added as early functionality for NPCs. This has been replaced with the NPC functions.
  204. Allow_osAvatarPlayAnimation = false
  205. Allow_osAvatarStopAnimation = false
  206. Allow_osForceAttachToOtherAvatarFromInventory = false
  207. Allow_osForceDetachFromAvatar = false
  208. Allow_osForceOtherSit = false
  209. ; The notecard functions can cause a lot of load on the region if over used
  210. Allow_osGetNotecard = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  211. Allow_osGetNotecardLine = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  212. Allow_osGetNumberOfNotecardLines = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  213. Allow_osRegionNotice = ESTATE_MANAGER,ESTATE_OWNER
  214. Allow_osSetRot = false
  215. Allow_osSetParcelDetails = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  216. ; ThreatLevel Severe
  217. Allow_osConsoleCommand = false
  218. Allow_osGrantScriptPermissions = false
  219. Allow_osKickAvatar = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  220. Allow_osRevokeScriptPermissions = false
  221. Allow_osTeleportAgent = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
  222. Allow_osTeleportObject = ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER