Difference between revisions of "LlGetCreator"

From Second Life Wiki
Jump to navigation Jump to search
m (SLUniverse vote)
Line 17: Line 17:
         key creatorThisPrim = llGetCreator();
         key creatorThisPrim = llGetCreator();


    //  PUBLIC_CHANNEL has the integer value 0
         llSay(0, "The creator of this prim has the key '"+(string)creatorThisPrim + "'.");
         llSay(PUBLIC_CHANNEL, "The creator of this prim has the key '"+(string)creatorThisPrim + "'.");
         llSay(0, "My owner has the key '" + (string)owner + "'.");
         llSay(PUBLIC_CHANNEL, "My owner has the key '" + (string)owner + "'.");
     }
     }
}
}

Revision as of 13:10, 10 June 2014

Summary

Function: key llGetCreator( );

Returns a key for the creator of the prim.

Examples

<lsl> 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 + "'.");
   }

}

</lsl>

See Also

Functions

•  llGetInventoryCreator
•  llGetOwner

Deep Notes

Search JIRA for related Issues

Signature

function key llGetCreator();

Haiku

An atheist says
There is no God and yet I
Can always find one.