Thanks to Alondria for:

llResetScript() is now functional. With this patch, Kan-script 0000003 should run.
Noted the llListen(0,"","","") errored due to "" != UUID - patched to set to 
NULL_KEY which then works to listen to everything.
This commit is contained in:
Charles Krinke
2007-12-12 22:07:40 +00:00
parent 100fb6a0b1
commit a0a189aed2
2 changed files with 21 additions and 14 deletions

View File

@@ -292,6 +292,10 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler
public int llListen(int channelID, string name, string ID, string msg)
{
if (ID == "")
{
ID = LLUUID.Zero.ToString();
}
IWorldComm wComm = m_ScriptEngine.World.RequestModuleInterface<IWorldComm>();
return wComm.Listen(m_localID, m_itemID, m_host.UUID, channelID, name, ID, msg);
}