-->

FoxSan's 3D Tools and LSL Script Repository

Tons of LSL scripts, examples and 3D tools, free for all. There are currently 207 scripts and articles in this database.

llDetectedGroup

default
{
    state_entry()
    {
        llSetText("llDetectedGroup()\nTouch to see if you're in the same group",<1,1,1>,1);
    }
 
    touch_start(integer total_number)
    {
       if(llDetectedGroup(0))
            llSay(0,"Same group!");
       else
            llSay(0,"Not the same group!");
    }
}

Comments are closed.