2015-04-12 23:00:54 +00:00
|
|
|
; Enable OSSL functions.
|
|
|
|
; Including this file in a region's set of INI files, causes the OpenSimulator
|
2018-03-19 16:30:03 +00:00
|
|
|
; specific functions to be enabled.
|
2019-10-15 21:57:30 +00:00
|
|
|
; See http://opensimulator.org/wiki/Category:OSSL_Functions for a description of OSSL functions
|
2015-04-12 23:00:54 +00:00
|
|
|
|
2018-02-02 03:50:43 +00:00
|
|
|
[OSSL]
|
2019-10-16 13:04:20 +00:00
|
|
|
; Allow the use of os* functions (some are always available)
|
2015-04-12 23:00:54 +00:00
|
|
|
AllowOSFunctions = true
|
2015-04-14 13:18:25 +00:00
|
|
|
|
|
|
|
; Allow the user of mod* functions. This allows a script to pass messages
|
|
|
|
; to a region module via the modSendCommand() function and is used by some
|
|
|
|
; modules to extend the scripting language.
|
|
|
|
AllowMODFunctions = true
|
|
|
|
|
|
|
|
; Allow the use of LightShare functions.
|
|
|
|
; The setting enable_windlight = true must also be enabled in the [LightShare] section.
|
2015-05-26 00:52:27 +00:00
|
|
|
AllowLightShareFunctions = true
|
2015-04-12 23:00:54 +00:00
|
|
|
|
2019-10-15 23:08:45 +00:00
|
|
|
; Send function permission error to owner if true, to all if false
|
|
|
|
PermissionErrorToOwner = false
|
|
|
|
|
2019-10-15 21:57:30 +00:00
|
|
|
; Function Threat level
|
|
|
|
; Several functions have a predefined threat level, one of: None, VeryLow, Low, Moderate, High, VeryHigh, Severe.
|
2015-04-14 13:18:25 +00:00
|
|
|
; See http://opensimulator.org/wiki/Threat_level for more information on these levels.
|
|
|
|
; Blanket enabling the ossl functions is dangerous and we do not recommend setting higher
|
|
|
|
; than 'Low' unless you have a high level of trust in all the users that can run scripts
|
|
|
|
; in your simulator. It is safer to explicitly allow certain types of user to run
|
|
|
|
; higher threat level OSSL functions, as detailed later on.
|
2019-10-15 21:57:30 +00:00
|
|
|
; This setting defines the highest level allowed to execute
|
2015-04-12 23:00:54 +00:00
|
|
|
OSFunctionThreatLevel = VeryLow
|
|
|
|
|
2019-10-15 21:57:30 +00:00
|
|
|
; The threat level can be replaced by more detailed rules by lines of the form
|
|
|
|
; Allow_FunctionName = parameters
|
|
|
|
; To use the default threat level coment the respective line
|
|
|
|
; parameters can be:
|
|
|
|
; 'false' disables the function.
|
|
|
|
; 'true' enables for everyone
|
|
|
|
; or to enable for individuals or groups, set it to a comma separated list. This checks
|
2015-04-12 23:00:54 +00:00
|
|
|
; against the owner of the object containing the script.
|
|
|
|
; The comma separated entries in the list may be one of:
|
2016-12-23 20:41:10 +00:00
|
|
|
; "GRID_GOD" -- enable for users with UserLevel >= 200
|
2017-01-07 23:38:55 +00:00
|
|
|
; "GOD" -- enable for users with rights to be god (local or grid)
|
|
|
|
; "ACTIVE_GOD" -- enable for users that are present and with active god power
|
2015-04-12 23:00:54 +00:00
|
|
|
; "ESTATE_MANAGER" -- enable for estate manager
|
|
|
|
; "ESTATE_OWNER" -- enable for estate owner
|
|
|
|
; "PARCEL_OWNER" -- enable for parcel owner
|
|
|
|
; "PARCEL_GROUP_MEMBER" -- enable for any member of the parcel group
|
2015-04-14 13:18:25 +00:00
|
|
|
; uuid -- enable for specified ID (may be avatar or group ID)
|
2018-03-19 16:30:03 +00:00
|
|
|
; from this we can also create macros that can be include in the list as
|
2018-02-02 03:50:43 +00:00
|
|
|
; ${OSSL|macroname} see examples below
|
2018-03-19 16:30:03 +00:00
|
|
|
|
2017-06-30 21:04:56 +00:00
|
|
|
; parcel macros
|
2015-04-12 23:00:54 +00:00
|
|
|
; Allowing ossl functions for anyone owning a parcel can be dangerous especially if
|
|
|
|
; a region is selling or otherwise giving away parcel ownership. By default, parcel
|
|
|
|
; ownership or group membership does not enable OSSL functions. Uncomment the
|
|
|
|
; appropriate line below to allow parcel ownership and groups to do restricted
|
2015-04-14 13:18:25 +00:00
|
|
|
; OSSL functions. It might be better to check the list below and edit the ones
|
|
|
|
; to enable individually.
|
2015-04-12 23:00:54 +00:00
|
|
|
osslParcelO = ""
|
|
|
|
osslParcelOG = ""
|
|
|
|
; osslParcelO = "PARCEL_OWNER,"
|
|
|
|
; osslParcelOG = "PARCEL_GROUP_MEMBER,PARCEL_OWNER,"
|
2015-04-14 13:18:25 +00:00
|
|
|
|
2017-06-30 21:04:56 +00:00
|
|
|
; NPC macros
|
2015-04-14 13:18:25 +00:00
|
|
|
; These can be mis-used so limit use to those you can trust.
|
2018-02-02 03:50:43 +00:00
|
|
|
osslNPC = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
2019-10-15 21:57:30 +00:00
|
|
|
|
|
|
|
; The threat level also can be replaced by lines of the form
|
|
|
|
; Creators__FunctionName = comma separated list of UUIDs
|
2019-10-15 23:08:45 +00:00
|
|
|
; this will enable the function for users that are the script creators and owners of the prim
|
2017-06-24 22:04:37 +00:00
|
|
|
|
2018-03-19 16:30:03 +00:00
|
|
|
|
2017-06-30 21:04:56 +00:00
|
|
|
; *************************************************
|
2018-03-19 16:30:03 +00:00
|
|
|
|
|
|
|
; ThreatLevel None
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osGetAgents = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osGetAvatarList = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
2019-10-21 10:34:32 +00:00
|
|
|
;Allow_osGetGender = true
|
|
|
|
;Allow_osGetHealth = true
|
|
|
|
;Allow_osGetHealRate = true
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osGetNPCList = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
2019-10-21 10:34:32 +00:00
|
|
|
;Allow_osGetRezzingObject = true
|
|
|
|
;Allow_osGetSunParam = true
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osNpcGetOwner = ${OSSL|osslNPC}
|
2019-10-21 10:25:40 +00:00
|
|
|
Allow_osSetSunParam = ESTATE_MANAGER,ESTATE_OWNER
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osTeleportOwner = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
2019-10-21 10:34:32 +00:00
|
|
|
;Allow_osWindActiveModelPluginName = true
|
2018-03-19 16:30:03 +00:00
|
|
|
|
2015-04-12 23:00:54 +00:00
|
|
|
; ThreatLevel Nuisance
|
|
|
|
Allow_osSetEstateSunSettings = ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osSetRegionSunSettings = ESTATE_MANAGER,ESTATE_OWNER
|
2018-03-19 16:30:03 +00:00
|
|
|
|
2015-04-12 23:00:54 +00:00
|
|
|
; ThreatLevel VeryLow
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osEjectFromGroup = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osForceBreakAllLinks = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osForceBreakLink = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
2015-04-12 23:00:54 +00:00
|
|
|
Allow_osGetWindParam = true
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osInviteToGroup = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
2015-04-12 23:00:54 +00:00
|
|
|
Allow_osReplaceString = true
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osSetDynamicTextureData = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osSetDynamicTextureDataFace = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osSetDynamicTextureDataBlend = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osSetDynamicTextureDataBlendFace = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osSetParcelMediaURL = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osSetParcelSIPAddress = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
2015-04-12 23:00:54 +00:00
|
|
|
Allow_osSetPrimFloatOnWater = true
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osSetWindParam = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
2015-04-12 23:00:54 +00:00
|
|
|
Allow_osTerrainFlush = ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osUnixTimeToTimestamp = true
|
2018-03-19 16:30:03 +00:00
|
|
|
|
2015-04-12 23:00:54 +00:00
|
|
|
; ThreatLevel Low
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osAvatarName2Key = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
2015-04-12 23:00:54 +00:00
|
|
|
Allow_osFormatString = true
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osKey2Name = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
2015-04-12 23:00:54 +00:00
|
|
|
Allow_osListenRegex = true
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osLoadedCreationDate = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osLoadedCreationID = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osLoadedCreationTime = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osMessageObject = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
2015-04-12 23:00:54 +00:00
|
|
|
Allow_osRegexIsMatch = true
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osGetAvatarHomeURI = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osNpcSetProfileAbout = ${OSSL|osslNPC}
|
|
|
|
Allow_osNpcSetProfileImage = ${OSSL|osslNPC}
|
|
|
|
Allow_osDie = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
2018-03-19 16:30:03 +00:00
|
|
|
|
2015-04-12 23:00:54 +00:00
|
|
|
; ThreatLevel Moderate
|
2018-11-18 19:45:22 +00:00
|
|
|
Allow_osDetectedCountry = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
2018-11-20 18:12:18 +00:00
|
|
|
Allow_osDropAttachment = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osDropAttachmentAt = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
2018-11-18 19:45:22 +00:00
|
|
|
Allow_osGetAgentCountry = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osGetGridCustom = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osGetGridGatekeeperURI = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osGetGridHomeURI = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osGetGridLoginURI = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
2015-04-12 23:00:54 +00:00
|
|
|
Allow_osGetGridName = true
|
|
|
|
Allow_osGetGridNick = true
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osGetNumberOfAttachments = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osGetRegionStats = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osGetSimulatorMemory = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osGetSimulatorMemoryKB = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osMessageAttachments = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osSetSpeed = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
2018-09-28 08:45:33 +00:00
|
|
|
Allow_osSetOwnerSpeed = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
2019-10-21 10:25:40 +00:00
|
|
|
Allow_osRequestURL = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osRequestSecureURL = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
2018-03-19 16:30:03 +00:00
|
|
|
|
2015-05-30 22:10:21 +00:00
|
|
|
; ThreatLevel High
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osCauseDamage = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osCauseHealing = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osSetHealth = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osSetHealRate = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osForceAttachToAvatar = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osForceAttachToAvatarFromInventory = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osForceCreateLink = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osForceDropAttachment = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osForceDropAttachmentAt = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osGetLinkPrimitiveParams = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
2015-04-12 23:00:54 +00:00
|
|
|
Allow_osGetPhysicsEngineType = true
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osGetRegionMapTexture = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
2015-04-12 23:00:54 +00:00
|
|
|
Allow_osGetScriptEngineName = true
|
|
|
|
Allow_osGetSimulatorVersion = true
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osMakeNotecard = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
2015-04-12 23:00:54 +00:00
|
|
|
Allow_osMatchString = true
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osNpcCreate = ${OSSL|osslNPC}
|
|
|
|
Allow_osNpcGetPos = ${OSSL|osslNPC}
|
|
|
|
Allow_osNpcGetRot = ${OSSL|osslNPC}
|
|
|
|
Allow_osNpcLoadAppearance = ${OSSL|osslNPC}
|
|
|
|
Allow_osNpcMoveTo = ${OSSL|osslNPC}
|
|
|
|
Allow_osNpcMoveToTarget = ${OSSL|osslNPC}
|
|
|
|
Allow_osNpcPlayAnimation = ${OSSL|osslNPC}
|
|
|
|
Allow_osNpcRemove = ${OSSL|osslNPC}
|
|
|
|
Allow_osNpcSaveAppearance = ${OSSL|osslNPC}
|
|
|
|
Allow_osNpcSay = ${OSSL|osslNPC}
|
2018-12-11 18:23:26 +00:00
|
|
|
Allow_osNpcSayTo = ${OSSL|osslNPC}
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osNpcSetRot = ${OSSL|osslNPC}
|
|
|
|
Allow_osNpcShout = ${OSSL|osslNPC}
|
|
|
|
Allow_osNpcSit = ${OSSL|osslNPC}
|
|
|
|
Allow_osNpcStand = ${OSSL|osslNPC}
|
|
|
|
Allow_osNpcStopAnimation = ${OSSL|osslNPC}
|
|
|
|
Allow_osNpcStopMoveToTarget = ${OSSL|osslNPC}
|
|
|
|
Allow_osNpcTouch = ${OSSL|osslNPC}
|
|
|
|
Allow_osNpcWhisper = ${OSSL|osslNPC}
|
|
|
|
Allow_osOwnerSaveAppearance = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
2015-04-14 13:18:25 +00:00
|
|
|
Allow_osParcelJoin = ESTATE_MANAGER,ESTATE_OWNER
|
2015-04-12 23:00:54 +00:00
|
|
|
Allow_osParcelSubdivide = ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osRegionRestart = ESTATE_MANAGER,ESTATE_OWNER
|
2018-08-30 13:51:07 +00:00
|
|
|
Allow_osRegionNotice = ESTATE_MANAGER,ESTATE_OWNER
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osSetProjectionParams = ${OSSL|osslParcelOG}ESTATE_MANAGER,ESTATE_OWNER
|
2015-04-12 23:00:54 +00:00
|
|
|
Allow_osSetRegionWaterHeight = ESTATE_MANAGER,ESTATE_OWNER
|
2015-04-14 13:18:25 +00:00
|
|
|
Allow_osSetStateEvents = false ; deprecated
|
2015-04-12 23:00:54 +00:00
|
|
|
Allow_osSetTerrainHeight = ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osSetTerrainTexture = ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osSetTerrainTextureHeight = ESTATE_MANAGER,ESTATE_OWNER
|
2018-03-19 16:30:03 +00:00
|
|
|
|
2015-05-30 22:10:21 +00:00
|
|
|
; ThreatLevel VeryHigh
|
2015-04-14 13:18:25 +00:00
|
|
|
Allow_osAgentSaveAppearance = ESTATE_MANAGER,ESTATE_OWNER
|
2015-04-13 02:32:06 +00:00
|
|
|
; Warning: The next function allows scripts to force animations on avatars without the user giving permission.
|
|
|
|
; Enabling this can allow forced animations which can trigger traumatic episodes in vulnerable populations.
|
|
|
|
; Similar things can be said for several of the 'force' functions. Enable with care and control.
|
2015-04-14 13:18:25 +00:00
|
|
|
; Some of these were added as early functionality for NPCs. This has been replaced with the NPC functions.
|
|
|
|
Allow_osAvatarPlayAnimation = false
|
|
|
|
Allow_osAvatarStopAnimation = false
|
2016-08-16 03:35:49 +00:00
|
|
|
Allow_osForceAttachToOtherAvatarFromInventory = false
|
2015-04-14 13:18:25 +00:00
|
|
|
Allow_osForceDetachFromAvatar = false
|
|
|
|
Allow_osForceOtherSit = false
|
|
|
|
; The notecard functions can cause a lot of load on the region if over used
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osGetNotecard = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osGetNotecardLine = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osGetNumberOfNotecardLines = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
2019-10-19 08:59:15 +00:00
|
|
|
Allow_osSetDynamicTextureURL = ESTATE_MANAGER,ESTATE_OWNER
|
2019-10-19 10:49:46 +00:00
|
|
|
Allow_osSetDynamicTextureURLBlend = ESTATE_MANAGER,ESTATE_OWNER
|
2019-10-19 08:59:15 +00:00
|
|
|
Allow_osSetDynamicTextureURLBlendFace = ESTATE_MANAGER,ESTATE_OWNER
|
2015-04-14 13:18:25 +00:00
|
|
|
Allow_osSetRot = false
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osSetParcelDetails = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
2018-03-19 16:30:03 +00:00
|
|
|
|
2015-05-30 22:10:21 +00:00
|
|
|
; ThreatLevel Severe
|
2015-04-12 23:00:54 +00:00
|
|
|
Allow_osConsoleCommand = false
|
2018-02-02 03:50:43 +00:00
|
|
|
Allow_osKickAvatar = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osTeleportAgent = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
|
|
|
Allow_osTeleportObject = ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
|
2018-03-19 16:30:03 +00:00
|
|
|
|
2017-09-04 17:30:16 +00:00
|
|
|
; ThreatLevel Severe with additional internal restrictions
|
2017-06-30 21:04:56 +00:00
|
|
|
Allow_osGetAgentIP = true ; always restricted to Administrators (true or false to disable)
|
2018-12-13 13:38:32 +00:00
|
|
|
Allow_osSetContentType = false
|
2018-03-19 16:30:03 +00:00
|
|
|
|
2018-04-08 23:23:23 +00:00
|
|
|
|
2019-10-16 13:04:20 +00:00
|
|
|
; Always available
|
2019-10-15 21:57:30 +00:00
|
|
|
; see http://opensimulator.org/wiki/Category:OSSL_Functions
|