aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Interface
diff options
context:
space:
mode:
authorSean Dague2009-04-09 15:04:02 +0000
committerSean Dague2009-04-09 15:04:02 +0000
commita5ceb1a2a06c7975f53603a3eb735e192745211e (patch)
tree1100ad85ee8f3b80189e52bf057bf390a6538bf8 /OpenSim/Region/ScriptEngine/Shared/Api/Interface
parent* Implements IObject.Materials[].* (diff)
downloadopensim-SC_OLD-a5ceb1a2a06c7975f53603a3eb735e192745211e.zip
opensim-SC_OLD-a5ceb1a2a06c7975f53603a3eb735e192745211e.tar.gz
opensim-SC_OLD-a5ceb1a2a06c7975f53603a3eb735e192745211e.tar.bz2
opensim-SC_OLD-a5ceb1a2a06c7975f53603a3eb735e192745211e.tar.xz
From: Christopher Yeoh <yeohc@au1.ibm.com>
The attached patch implements osKey2Name and osName2Key which converts between a UUID key for an avatar and an avatar name and vice-versa. osKey2Name is similar to llKey2Name except that it will work even if the avatar being looked up is not in the same region as the script.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Interface')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
index 533ed27..cf4e107 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
@@ -117,6 +117,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
117 void osMessageObject(key objectUUID,string message); 117 void osMessageObject(key objectUUID,string message);
118 118
119 void osMakeNotecard(string notecardName, LSL_Types.list contents); 119 void osMakeNotecard(string notecardName, LSL_Types.list contents);
120 string osAvatarName2Key(string firstname, string lastname);
121 string osKey2Name(string id);
120 122
121 // Grid Info Functions 123 // Grid Info Functions
122 string osGetGridNick(); 124 string osGetGridNick();