Skip to content

llGetCreator

key llGetCreator()

Returns a key for the creator of the prim.

Returns the key of the object's original creator. Similar to llGetOwner.

default
{
state_entry()
{
key owner = llGetOwner();
key creatorThisPrim = llGetCreator();
llSay(0, "The creator of this prim has the key '"+(string)creatorThisPrim + "'.");
llSay(0, "My owner has the key '" + (string)owner + "'.");
}
}