OK are you looking to add RLV to the doll key or what. as that i know
of there are no Doll scripts for OpenCollar, but you are more then
welcome to creat a doll script for OpenCollar. Without knowing what
you are wanting the doll key to do, it is impossible to give you codes
for what you may need. But you are welcome to look at the wiki pages
for RLV in SecondLife.
integer LOCALSETTING_SAVE = 2500;
integer LOCALSETTING_REQUEST = 2501;
integer LOCALSETTING_RESPONSE = 2502;
integer LOCALSETTING_DELETE = 2503;
integer LOCALSETTING_EMPTY = 2504;
Notify(key kID, string sMsg, integer iAlsoNotifyWearer)
{
if (kID == g_kWearer)
{
llOwnerSay(sMsg);
} else {
llInstantMessage(kID,sMsg);
if (iAlsoNotifyWearer)
{
llOwnerSay(sMsg);
}
}
}
Now what do you want the key to do, as without knowing persciesly what
you wish to do, you can use things like this as a point of referance.
good luck