|
Oberon Onmura
Registered User
Join date: 28 Dec 2006
Posts: 125
|
03-28-2008 18:08
Does anyone know how to get the UUID of a group? It isn't a group that owns land; it's just a group!
I thought I could get it from the debug console when I initiated an IM, but that doesn't seem to work. Any ideas? Thanks!
|
|
Viktoria Dovgal
…
Join date: 29 Jul 2007
Posts: 3,593
|
03-28-2008 18:16
If the group is listed in the new search all tab, the UUID will be listed at the bottom in the dimmed "link to this page" text, because that's what they use for the URLs.
|
|
SuezanneC Baskerville
Forums Rock!
Join date: 22 Dec 2003
Posts: 14,229
|
03-28-2008 18:25
What are you hoping to use the group id for?
I think you can get a group id inworld by deeding an object to the group, assuming you can do that) and then using llGetOwner or something like that.
_____________________
-
So long to these forums, the vBulletin forums that used to be at forums.secondlife.com. I will miss them.
I can be found on the web by searching for "SuezanneC Baskerville", or go to
http://www.google.com/profiles/suezanne
-
http://lindenlab.tribe.net/ created on 11/19/03.
Members: Ben, Catherine, Colin, Cory, Dan, Doug, Jim, Philip, Phoenix, Richard, Robin, and Ryan
-
|
|
Viktoria Dovgal
…
Join date: 29 Jul 2007
Posts: 3,593
|
03-28-2008 18:28
You don't need to deed the object, anywhere you can rez a prim should work fine. If you set the object to the group you're interested in, you can drop a script like this in to see the group uuid. default {
touch_start(integer total_number) { llWhisper(0, "group: " + (string) llGetObjectDetails(llGetKey(), [OBJECT_GROUP])); } }
|