LSL Wiki Mirror 7-7-7 : llGetCreator

HomePage :: PageIndex :: RecentChanges :: RecentlyCommented :: UserSettings ::
key llGetCreator()

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

Example:
default {
    state_entry() {
        llRequestAgentData(llGetCreator(), DATA_NAME); // get the creator's key and request their name
    }
    
    dataserver(key queryid, string data) {
        llSay(0, "I was created by " + data);
    }
}

Compare with llGetInventoryCreator.

Q: Is there an equivilent function to llGetOwnerKey?
A: No, at this point, only a script within an object can find out who created it. Scripts can't determine the creator of an arbitrary object.


Functions | Creator
There is no comment on this page. [Display comments/form]