Thank you, Orion_Shamroy, for a patch that adds osGetNotecardLine and

osGetNumberOfNotecardLines
Fixes Mantis #2942
This commit is contained in:
Melanie Thielker
2009-04-27 12:05:49 +00:00
parent 515e62dc2f
commit d98a916006
3 changed files with 93 additions and 0 deletions

View File

@@ -307,6 +307,16 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
m_OSSL_Functions.osMakeNotecard(notecardName, contents);
}
public string osGetNotecardLine(string name, int line)
{
return m_OSSL_Functions.osGetNotecardLine(name, line);
}
public int osGetNumberOfNotecardLines(string name)
{
return m_OSSL_Functions.osGetNumberOfNotecardLines(name);
}
public string osAvatarName2Key(string firstname, string lastname)
{
return m_OSSL_Functions.osAvatarName2Key(firstname, lastname);