Difference between revisions of "LlGetRegionName/fr"

From Second Life Wiki
Jump to navigation Jump to search
(Localized to french)
 
(No difference)

Latest revision as of 14:29, 19 March 2008

Description

Fonction: string llGetRegionName( );

Renvoie un string correspondant au nom de la région


Exemples

<lsl> // Début d’un script d’informations sur une région. default {

   state_entry()
   {
       llSetTimerEvent(3.0);
   }
   
   timer()
   {
       string msg;
       
       msg = "NOM  REGION : " + llGetRegionName();
       
       llSetText(msg, <0,1,0>, 1.0);
   }

} </lsl>

Voir également

Fonctions

•  llGetSimulatorHostname Renvoie le nom de la sim
Vous cherchez encore des informations ? Peut-être cette page du LSLwiki pourra vous renseigner.