Difference between revisions of "LlGetCreator"

From Second Life Wiki
Jump to navigation Jump to search
 
m
 
(20 intermediate revisions by 11 users not shown)
Line 1: Line 1:
{{LSLFunctionAll|func_id=272|func_sleep=0.0|func_energy=10.0|func=llGetCreator|return_type=key|func_footnote=Returns the creator of the object|return_text|spec|caveats|examples|helpers|related|also|notes}}[[Category:LSL_Functions]][[Category:LSL_Stub]]
{{LSL_Function
|func=llGetCreator
|sort=GetCreator
|func_id=272|func_sleep=0.0|func_energy=10.0
|func_footnote
|return_type=key
|return_text=for the creator of the prim.
|spec
|caveats
|examples=
<source lang="lsl2">
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 + "'.");
    }
}
</source>
|constants
|helpers
|also_functions=
{{LSL DefineRow||[[llGetInventoryCreator]]|}}
{{LSL DefineRow||[[llGetOwner]]|}}
|also_events
|also_tests
|also_articles
|notes
|permission
|negative_index
|cat1=Prim
|cat2=Creator
|cat3=Key
|cat4
|haiku={{Haiku|An atheist says|There is no God and yet I|Can always find one.}}
}}

Latest revision as of 01:46, 22 January 2015