Update svn properties, minor formatting cleanup.
parent
b84417a220
commit
638fe7a7b5
|
@ -1,5 +1,5 @@
|
||||||
BEGIN TRANSACTION
|
BEGIN TRANSACTION
|
||||||
|
|
||||||
ALTER TABLE users add email varchar(250);
|
ALTER TABLE users add email varchar(250);
|
||||||
|
|
||||||
COMMIT
|
COMMIT
|
||||||
|
|
|
@ -945,25 +945,19 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||||
}
|
}
|
||||||
|
|
||||||
// send a message to to object identified by the given UUID, a script in the object must implement the dataserver function
|
// send a message to to object identified by the given UUID, a script in the object must implement the dataserver function
|
||||||
// the dataserver function is passed the ID of the calling function and a string message
|
// the dataserver function is passed the ID of the calling function and a string message
|
||||||
public void osMessageObject(LSL_Key objectUUID,string message)
|
public void osMessageObject(LSL_Key objectUUID, string message)
|
||||||
{
|
{
|
||||||
CheckThreatLevel(ThreatLevel.Low,"osMessageObject");
|
CheckThreatLevel(ThreatLevel.Low, "osMessageObject");
|
||||||
m_host.AddScriptLPS(1);
|
m_host.AddScriptLPS(1);
|
||||||
|
|
||||||
|
object[] resobj = new object[] { new LSL_Types.LSLString(m_host.UUID.ToString()), new LSL_Types.LSLString(message) };
|
||||||
object[] resobj = new object[] { new LSL_Types.LSLString(m_host.UUID.ToString()),new LSL_Types.LSLString(message) };
|
|
||||||
|
SceneObjectPart sceneOP = World.GetSceneObjectPart(new UUID(objectUUID));
|
||||||
SceneObjectPart sceneOP = World.GetSceneObjectPart(new UUID(objectUUID));
|
|
||||||
|
m_ScriptEngine.PostObjectEvent(
|
||||||
m_ScriptEngine.PostObjectEvent(
|
sceneOP.LocalId, new EventParams(
|
||||||
sceneOP.LocalId, new EventParams(
|
"dataserver", resobj, new DetectParams[0]));
|
||||||
"dataserver", resobj,
|
}
|
||||||
new DetectParams[0]));
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue