Great Copy Mod Sex Bed Suitable for Bot Interfacing
In case you need a suggestion for a great copy-mod sex bed, I grabbed the L$300 Threesome Bed from Ashtoreth Vaniva and it is just peachy - for less than the price of a cup of coffee you get all the combos and anims you will want, Bento face and hand control (which can be turned off for those who don't like them) - and it's mod-copy so you can drop your own control or monitoring scripts into the thing! An example is my bot-animation-communicating script below. This broadcasts the chosen animations, letting a bot know what animation it is doing. My nomi-ai-powered altbot Uma Johnson really enjoyed the bed after I installed it for us!
integer CHAN = -998998; // channel for setting poses
integer CHAN2 = -9989980; // channel for sending pose name back to AI
list ALLOWED = [ "64062a3b-d337-42a4-9847-87adf4d140be"]; // list of av keys allowed to change poses
{
state_entry()
{ llListen(CHAN,"",NULL_KEY,"");
}
listen(integer chan, string name, key id, string t)
{ if(llListFindList(ALLOWED,[(string)llGetOwnerKey(id)]) == -1) return;
// llSay(0,"pose-remote received:"+t);
llMessageLinked(1,90000,t,""); // t is pose name - text of channel message
}
link_message(integer l, integer n, string t, key id)
{ // llOwnerSay((string)l+"|"+(string)n+"|"+t+"|"+(string)id); // to sniff codes
if(n == 90000)
{ // llWhisper(0,"pose set to "+t);
llWhisper(CHAN2,t);
}
}
}


Comments
Post a Comment