Difference between revisions of "LlGetCreator/fr"

From Second Life Wiki
Jump to navigation Jump to search
(creation)
 
m (formatted example)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Multi-lang}}{{LSL_Function/fr
{{LSL_Function/fr
|func=llGetCreator
|func=llGetCreator
|sort=GetCreator
|sort=GetCreator
Line 9: Line 9:
|caveats
|caveats
|examples=
|examples=
<pre>
<lsl>
default
default
{
{
     state_entry()
     state_entry()
     {
     {
         llSay(0,"Mon créateur est : "+(string)llGetCreator() );
         llSay(0, "Mon créateur est : " + (string) llGetCreator() );
     }
     }
}
}
</pre>
</lsl>
|constants
|constants
|helpers
|helpers

Latest revision as of 16:43, 18 February 2008

Description

Fonction: key llGetCreator( );

Renvoie un key correspondant au créateur de la prim.


Exemples

<lsl> default {

   state_entry()
   {
       llSay(0, "Mon créateur est : " + (string) llGetCreator() );
   }

} </lsl>

Voir également

Fonctions

•  llGetInventoryCreator
•  llGetOwner
Vous cherchez encore des informations ? Peut-être cette page du LSLwiki pourra vous renseigner.