Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

join group through an object...

Marylou Lane
Registered User
Join date: 3 Mar 2007
Posts: 60
07-20-2007 17:13
hello !
I've seen that in world, you can join a group by touching an object. It's scripted, sure, but I didn't find the script to use it....
I would like to know if someone is able to do such a script or has one to post^^
thank you for your patience...
Damet Neumann
Registered User
Join date: 21 Apr 2006
Posts: 140
last i knew
07-20-2007 17:18
it is not possible to script a group invite i tried and there is no way to do it at this time
not sure what you saw perhaps a script that sends an im to the owner asking to be invited?
Marylou Lane
Registered User
Join date: 3 Mar 2007
Posts: 60
07-20-2007 17:36
i don't know exactly how it works but it's an object on which you have to clic to join the group. I've tested to join a group this way, I wasn't immediately joined to the group, well I tried this just for a few minutes^^, but anyway, if the object is able to send a message to me to join someone in the group, it will also be usefull.... so if someone knows something about this^^
Newgate Ludd
Out of Chesse Error
Join date: 8 Apr 2005
Posts: 2,103
07-21-2007 03:04
AFAIK, There is currently no LSL based functionality to allow automatic joining of a group via a scripted object. The usual solution is that the object IM / email a group member who then does teh actuial adding.
_____________________
I'm back......
Simnelia Petrichor
Registered User
Join date: 10 Feb 2006
Posts: 35
07-21-2007 06:19
From: Marylou Lane
i don't know exactly how it works but it's an object on which you have to clic to join the group. I've tested to join a group this way, I wasn't immediately joined to the group, well I tried this just for a few minutes^^, but anyway, if the object is able to send a message to me to join someone in the group, it will also be usefull.... so if someone knows something about this^^

You can do that nice and easily with a touch_start event along these lines:

touch_start(integer num)
{
llInstantMessage(llGetOwner(), llDetectedName(0) + " would like to join your group.";);
}