Jump to content

touch talk Script for boobs / nipples ?


Cyb Andel
 Share

You are about to reply to a thread that has been inactive for 4410 days.

Please take a moment to consider if this thread is worth bumping.

Recommended Posts

Try "Touch Detector" as a keyword in the Marketplace. There are several very low priced options there. There may be public domain scripts available that you can place in an transparent circular object and attach it to your chest. However I think the latter option will be a bit daunting to a newbie.

If you want the basics, the following script with subtle modifications will allow your boobies to issue a pre-defined comment from a NC.

http://wiki.secondlife.com/wiki/Touch_A_Quote

Have fun.

Link to comment
Share on other sites

Sounds like a simple touch script.  Start on the Second Life Wiki: http://wiki.secondlife.com/wiki/Touch_start

This is the code you'll need to get started:

////////////////////////////////////////////

default
{
    touch_start(integer num_detected)
    {
        integer i = 0;
        for(; i<num_detected; ++i)
            llWhisper(0, "Touched by " + llKey2Name(llDetectedKey(i)));
    }
}
////////////////////////////////////////////

You can replace llWhisper with llSay, llOwnerSay, or llOwnerSay.

Hope this helps, have fun!

 

 

Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 4410 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...