LlGetCreator
From Second Life Wiki
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Summary
Function: key llGetCreator( );| 272 | Function ID |
| 0.0 | Forced Delay |
| 10.0 | Energy |
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 + "'."); } }
This article wasn't helpful for you? Maybe the related article at the LSL Wiki is able to bring enlightenment.

