Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

finding the unique id for people/avatars

Suzette Fackler
Registered User
Join date: 11 Mar 2006
Posts: 9
03-27-2006 22:03
I was given a cool paging program for my group, but it runs on manually inputting the long many-digit unique id number for each member. The developer of this program doesn't seem to be around any more, and no matter what I read I can't find anything about how to determine/retrieve this information.

Can anyone point me in a good direction? Thanks!
Eloise Pasteur
Curious Individual
Join date: 14 Jul 2004
Posts: 1,952
03-27-2006 22:42
This should be in scripting tips really...

But I make a free key grabber - people touch it and it says their key and name so you can copy, and it's obvious to people what it does.

I'll try to remember to drop it on you in world, but if I forget (I'm about to dash for work) please IM me.
AJ DaSilva
woz ere
Join date: 15 Jun 2005
Posts: 1,993
03-28-2006 07:34
If it's impractical to get each avatar to register their key by touching an object or something you could use this:
http://w-hat.com/name2key

If it is practical to get everyone to register, these are the things you'll need:
http://secondlife.com/badgeo/wakka.php?wakka=touch_start
http://secondlife.com/badgeo/wakka.php?wakka=llDetectedKey
Jana Fleming
SL Resident
Join date: 25 Oct 2004
Posts: 319
03-31-2006 21:26
Moving this to scripting tips, you should find a little more help there :))
Kenn Nilsson
AeonVox
Join date: 24 May 2005
Posts: 897
04-01-2006 18:02
Copy and paste the following code into a script in-game and place it into a prim. Then have anyone you want to add to your paging system touch the object:

CODE


default
{
touch_start(integer number)
{
llSay(0, llDetectedKey(0) + " " + llDetectedName(0));
}
}



The object will tell you the UUID for the avatar and their name. Copy/Past the UUID into your paging system.
_____________________
--AeonVox--

Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms chasing ghosts, eating magic pills, and listening to repetitive, addictive, electronic music.