Group Inviter?
|
|
Alley McNally
Registered User
Join date: 17 Jun 2006
Posts: 19
|
01-17-2008 18:24
How do you get the group's UUID? From: Tiarnalalon Sismondi As a (admittedly late) response to this, if your group has open enrollment (meaning they can just click the Join button on the group window). You can script an object to open the group window by having it simply say the following line on touch:
"secondlife:///app/group/"+ groupUUID+"/about"
The link will open the group window and they can just click join. No bots or anything required and as you can see it's a very simple line of code.
|
|
Theo Kline
(???)
Join date: 31 Dec 2006
Posts: 224
|
01-17-2008 18:37
From: Alley McNally How do you get the group's UUID? +1, I'd like to know this too. Edit: I think I found it. Using the new search, lookup the specific group and it is listed on the bottom of the page in "link to this page'.
|
|
Day Oh
Registered User
Join date: 3 Feb 2007
Posts: 1,257
|
01-17-2008 19:01
/me nods, that's the easiest way I can think of
Method 2, create an object and set it to the group, then run this script in it:
default { state_entry() { llOwnerSay(llList2String(llGetObjectDetails(llGetKey(), [OBJECT_GROUP]), 0)); } }
|
|
Alley McNally
Registered User
Join date: 17 Jun 2006
Posts: 19
|
Got ID, now what?
01-17-2008 20:21
Okay, I got the group UUID but now how do I input it? I tried to delete groupUUID and input the UUID but I get a syntax error. What I am I doing wrong?
|
|
Day Oh
Registered User
Join date: 3 Feb 2007
Posts: 1,257
|
01-17-2008 20:26
Example of Tiarnalalon's solution: From: someone default { touch_start(integer t) { string groupID = llList2String(llGetObjectDetails(llGetKey(), [OBJECT_GROUP]), 0); integer i; for(i = 0; i < t; i++) { llInstantMessage(llDetectedKey(i), "Interested in teh group? Click this link! secondlife:///app/group/" + groupID + "/about"  ; } } }
|
|
Alley McNally
Registered User
Join date: 17 Jun 2006
Posts: 19
|
Sweet Thanks!
01-17-2008 20:31
How that works great! Thank you!
|
|
Starfire Desade
Can I play with YOUR mind
Join date: 10 Jul 2006
Posts: 404
|
01-17-2008 20:43
From: Day Oh Example of Tiarnalalon's solution: Nice... but you mispelled "the"... *wink*
|
|
Void Singer
Int vSelf = Sing(void);
Join date: 24 Sep 2005
Posts: 6,973
|
01-17-2008 22:12
if you want a groups uuid just snag it from the new search... searc for your group, open the page for the group, the uuid is at the bottom of the page in the link after group/
_____________________
| | . "Cat-Like Typing Detected" | . This post may contain errors in logic, spelling, and | . grammar known to the SL populace to cause confusion | | - Please Use PHP tags when posting scripts/code, Thanks. | - Can't See PHP or URL Tags Correctly? Check Out This Link... | - 
|
|
Bradley Bracken
Goodbye, Farewell, Amen
Join date: 2 Apr 2007
Posts: 3,856
|
01-18-2008 01:03
I give this thread 5 stars and vote for it as thread of the week. I love this. Thank you!
_____________________
My interest in SL has simply died. Thanks for all the laughs
|
|
Winston Ackland
Registered User
Join date: 25 Jan 2007
Posts: 24
|
02-01-2008 16:48
a stupid question, yes, but where do you find a group's UUID? i am searching ingame and i don't see any indication of it anywhere when searching a group. no "link to this page" or anything. where do i look? thanks. 
|
|
Qie Niangao
Coin-operated
Join date: 24 May 2006
Posts: 7,138
|
02-01-2008 16:59
Winston, see the responses #27 and #28 above. Taking the #27 route, say you Search for "Thinkers"... using the (new) "All" tab, type the group name in the search field, switch the pulldown to Groups, and click Search; click on the desired group, and look at the end of the page for that group. In grey, there's the URL for the page you're viewing, including the group UUID.
|
|
Winston Ackland
Registered User
Join date: 25 Jan 2007
Posts: 24
|
02-01-2008 17:16
qie, thank you. the mistake i was making was that i was searching from the "groups" tab, not the "all" tab. got it now. thanks much. 
|
|
Suzan Littlething
Registered User
Join date: 30 Jul 2007
Posts: 14
|
open group window directly?
02-07-2009 11:00
I grab this older thread to do my question...
Just to be sure - for a group invite: it is still not possible to click on a prim and then get directly the group window open? Only that you get the link and have to click it to open the group window?
Or is there a possibility via script?
I know, it is not a big deal, but would be nicer to get directly the group window to join. Especially sometime, when clicking on a link don't work...
|
|
Alley McNally
Registered User
Join date: 17 Jun 2006
Posts: 19
|
Not to my knowledge
02-07-2009 11:22
Suzan, When I looked into this (a long time ago), I tried the script mentioned in the thread and it worked for me. I used it in many projects and groups that I have created with a lot of success. The key to is to understand that you simply can't do it in one click. They have to do it in a couple. For free and simple it is great! I believe there are non-free methods to do as you request. However, they are fairly complicated and expensive. And if you are only looking to save a few clicks of your customers, then I suggest you stick with this script. If they want in, they will do it. It's pretty easy! (Oh as a side note, if you use open-invites, make sure the group you invite them to doesn't own the land. It is more trouble than it is worth!) See you, Alley From: Suzan Littlething I grab this older thread to do my question...
Just to be sure - for a group invite: it is still not possible to click on a prim and then get directly the group window open? Only that you get the link and have to click it to open the group window?
Or is there a possibility via script?
I know, it is not a big deal, but would be nicer to get directly the group window to join. Especially sometime, when clicking on a link don't work...
|