LlGetRegionName/fr
From Second Life Wiki
| Portail LSL | | | Fonctions | | | Évènements | | | Types | | | Constantes | | | Contrôle d'exécution | | | Bibliothèque de scripts | | | Tutoriels |
Fonction: string llGetRegionName( );
Exemples
// 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); } }

