Difference between revisions of "LlGetEnv"

From Second Life Wiki
Jump to navigation Jump to search
(Created page with '{{LSL Generic/RC|LeTigre}} {{LSL_Function |func_id=???|func_sleep=0.0|func_energy=0.0 |func= llGetEnv |sort= llGetEnv |return_type=string |p1_type=string|p1_name=name|p1_desc |fu...')
 
Line 25: Line 25:
default
default
{
{
     touch_start(integer total_number)
     touch_start(integer total_number)
     {
     {
Line 42: Line 41:
|also_articles
|also_articles
|notes
|notes
|history=*Introduced in [[Release Notes/Second Life RC LeTigre/10#10.11.30.215699|Second Life RC LeTigre 10.11.30.215699]], deployed on 2010-12-01.
|cat1
|cat1
|cat2=Region
|cat2=Region

Revision as of 02:04, 2 December 2010

KBcaution.png Important: This feature is currently only available on the LeTigre server channel.

Summary

Function: string llGetEnv( string name );

Returns a string with the requested data about the region where the script is running.

• string name

Name Description
"sim_channel" Get the current region's channel string, for example "Second Life Server"
"sim_version" Get the current region's version number string, for example "10.11.30.215699"

Examples

<lsl> default {

   touch_start(integer total_number)
   {
       llOwnerSay("Region " + llGetRegionName() + " is running "
                  + llGetEnv("sim_channel") + " version " + llGetEnv("sim_version"));
   }

}

</lsl>

See Also

Deep Notes

History

Search JIRA for related Issues

Signature

function string llGetEnv( string name );