LlGetRegionName
From Second Life Wiki
(Redirected from LSL llGetRegionName)
| LSL Portal | | | Functions | | | Events | | | Types | | | Operators | | | Constants | | | Flow Control | | | Script Library | | | Tutorials |
Contents |
Examples
// The beginnings of a region-info script. default { state_entry() { llSetTimerEvent(3.0); } timer() { string msg; msg = "REGION NAME : " + llGetRegionName(); llSetText(msg, <0,1,0>, 1.0); } }

