Difference between revisions of "LlGetCreator"
Jump to navigation
Jump to search
Omei Qunhua (talk | contribs) m (SLUniverse vote) |
m |
||
Line 9: | Line 9: | ||
|caveats | |caveats | ||
|examples= | |examples= | ||
< | <source lang="lsl2"> | ||
default | default | ||
{ | { | ||
Line 21: | Line 21: | ||
} | } | ||
} | } | ||
</ | </source> | ||
|constants | |constants | ||
|helpers | |helpers |
Latest revision as of 01:46, 22 January 2015
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Summary
Function: key llGetCreator( );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();
llSay(0, "The creator of this prim has the key '"+(string)creatorThisPrim + "'.");
llSay(0, "My owner has the key '" + (string)owner + "'.");
}
}
See Also
Functions
• | llGetInventoryCreator | |||
• | llGetOwner |