LlGetRegionName/fr

From Second Life Wiki
< LlGetRegionName
Revision as of 14:29, 19 March 2008 by Gally Young (talk | contribs) (Localized to french)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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.