Difference between revisions of "LlGetOwner/fr"

From Second Life Wiki
Jump to navigation Jump to search
m (fixe)
m (formatted example)
 
Line 9: Line 9:
|caveats
|caveats
|constants
|constants
|examples=<pre>default
|examples=<lsl>default
{
{
     state_entry()
     state_entry()
Line 15: Line 15:
         llInstantMessage(llGetOwner(),"Seul vous pouvez m'entendre.");
         llInstantMessage(llGetOwner(),"Seul vous pouvez m'entendre.");
     }
     }
}</pre>
}</lsl>
|helpers
|helpers
|also_functions=
|also_functions=

Latest revision as of 16:14, 19 February 2008

Description

Fonction: key llGetOwner( );

Renvoie un key correspondant au propriétaire du script.


Exemples

<lsl>default {

   state_entry()
   {
       llInstantMessage(llGetOwner(),"Seul vous pouvez m'entendre.");
   }

}</lsl>

Voir également

Fonctions

•  llGetCreator
•  llGetOwnerKey
•  llDetectedOwner
Vous cherchez encore des informations ? Peut-être cette page du LSLwiki pourra vous renseigner.