LlGetCreator

From Second Life Wiki

Jump to: navigation, search

Contents

Summary

Function: key llGetCreator( );

Returns a key for the creator of the prim.

Examples

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

See Also

Functions

•  llGetInventoryCreator
•  llGetOwner

Deep Notes

Search JIRA for related Issues

This article wasn't helpful for you? Maybe the related article at the LSL Wiki is able to bring enlightenment.
Personal tools