Don't click here unless you want to be banned.

LSL Wiki : llGetCreator

HomePage :: PageIndex :: RecentChanges :: RecentlyCommented :: UserSettings :: You are crawl338.us.archive.org
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: Yes, with llGetObjectDetails (OBJECT_CREATOR). Jor3l Boa


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

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