diff options
author | BlueWall | 2011-08-19 18:47:21 -0400 |
---|---|---|
committer | BlueWall | 2011-08-19 18:47:21 -0400 |
commit | 2787207aa287a60a3c7c06fad66d406180033ae2 (patch) | |
tree | 8e311f249b2ed665dbb38dd0cb1b8d83215bc3e2 /OpenSim/Region/ScriptEngine/Shared/Api/Runtime | |
parent | Get rid of HttpServer.dll to avoid confusion since we use HttpServer_OpenSim.... (diff) | |
download | opensim-SC_OLD-2787207aa287a60a3c7c06fad66d406180033ae2.zip opensim-SC_OLD-2787207aa287a60a3c7c06fad66d406180033ae2.tar.gz opensim-SC_OLD-2787207aa287a60a3c7c06fad66d406180033ae2.tar.bz2 opensim-SC_OLD-2787207aa287a60a3c7c06fad66d406180033ae2.tar.xz |
Add llRegionSayTo
llRegionSayTo(key target, integer channel, string messasge)
Allows messages to be sent region-wide
to a particular prim.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs index 303d75e..96e46fd 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs | |||
@@ -1199,6 +1199,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
1199 | m_LSL_Functions.llRegionSay(channelID, text); | 1199 | m_LSL_Functions.llRegionSay(channelID, text); |
1200 | } | 1200 | } |
1201 | 1201 | ||
1202 | public void llRegionSayTo(string key, int channelID, string text) | ||
1203 | { | ||
1204 | m_LSL_Functions.llRegionSayTo(key, channelID, text); | ||
1205 | } | ||
1206 | |||
1202 | public void llReleaseCamera(string avatar) | 1207 | public void llReleaseCamera(string avatar) |
1203 | { | 1208 | { |
1204 | m_LSL_Functions.llReleaseCamera(avatar); | 1209 | m_LSL_Functions.llReleaseCamera(avatar); |