Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

uuid for rezzed object?

Gwylym Loon
Registered User
Join date: 6 Jun 2007
Posts: 81
05-14-2008 09:43
Is there an easy way to get the uuid of an object that is rezzed from an object's inventory?

thx!
Kidd Krasner
Registered User
Join date: 1 Jan 2007
Posts: 1,938
05-14-2008 09:50
Use the object_rez event (not to be confused with the on_rez event).
Dora Gustafson
Registered User
Join date: 13 Mar 2007
Posts: 779
05-14-2008 11:51
From: Gwylym Loon
Is there an easy way to get the uuid of an object that is rezzed from an object's inventory?

thx!

Yes!
CODE

key ID;
default
{
....
{
llRezAtRoot( objName, ....);
}

object_rez(key id)
{
ID = id; // UUID of rezzed objName
}
}

Happy scripting
_____________________
From Studio Dora