diff options
author | Justin Clark-Casey (justincc) | 2010-01-11 17:13:03 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-01-11 17:13:03 +0000 |
commit | fcaef85029b98b13d884869b6da7e561e365fcf8 (patch) | |
tree | 990669ca2c6f583d239304176adf3464c62a5646 | |
parent | minor: slightly improve README for building addon-modules within the main Ope... (diff) | |
download | opensim-SC_OLD-fcaef85029b98b13d884869b6da7e561e365fcf8.zip opensim-SC_OLD-fcaef85029b98b13d884869b6da7e561e365fcf8.tar.gz opensim-SC_OLD-fcaef85029b98b13d884869b6da7e561e365fcf8.tar.bz2 opensim-SC_OLD-fcaef85029b98b13d884869b6da7e561e365fcf8.tar.xz |
Add explanation about AllowModFunctions to OpenSim.ini.example
This switch allows scripts to pass messages to modules via the modSendCommand() function
Modules can then send messages back to scripts via the link_message LSL event through
invoking DispatchReply() on OpenSim.Region.Framework.Interfaces.IScriptModuleComms
-rw-r--r-- | bin/OpenSim.ini.example | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index d09dc67..6a117c9 100644 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example | |||
@@ -987,6 +987,11 @@ | |||
987 | ; Compile debug info (line numbers) into the script assemblies | 987 | ; Compile debug info (line numbers) into the script assemblies |
988 | CompileWithDebugInformation = true | 988 | CompileWithDebugInformation = true |
989 | 989 | ||
990 | ; Allow the user of mod* functions. This allows a script to pass messages | ||
991 | ; to a region module via the modSendCommand() function | ||
992 | ; Default is false | ||
993 | AllowMODFunctions = false | ||
994 | |||
990 | ; Allow the use of os* functions (some are dangerous) | 995 | ; Allow the use of os* functions (some are dangerous) |
991 | AllowOSFunctions = false | 996 | AllowOSFunctions = false |
992 | 997 | ||