Attached is an initial implementation of llGetNotecardLine and
llGetNumberOfNotecardLines. I decided to go ahead an send these out for
comment while I continue to work on the second part of the proper
implementation. These functions work and return the values requested, as
initially defined in the code, but should be properly implemented to return
the requested information via a dataserver event.  This
event will be added and these functions fixed and included in a second
patch shortly.
This commit is contained in:
Sean Dague
2008-05-28 21:43:41 +00:00
parent 858ddfa605
commit b0be8075cd
3 changed files with 86 additions and 7 deletions

View File

@@ -1595,7 +1595,7 @@ namespace OpenSim.Region.ScriptEngine.Common
return m_LSL_Functions.llGetNumberOfPrims();
}
public string llGetNumberOfNotecardLines(string name)
public int llGetNumberOfNotecardLines(string name)
{
return m_LSL_Functions.llGetNumberOfNotecardLines(name);
}