Difference between revisions of "LlGetRegionName"

From Second Life Wiki
Jump to navigation Jump to search
m (Link with region like llGetPos does)
m
Line 32: Line 32:
</lsl>
</lsl>
|helpers
|helpers
|also_functions={{LSL DefineRow||[[llGetPos]]|}}
|also_functions=
{{LSL DefineRow||[[llRequestSimulatorData]]|}}
{{LSL DefineRow||[[llGetSimulatorHostname]]|}}
{{LSL DefineRow||[[llGetSimulatorHostname]]|}}
|also_tests
|also_tests

Revision as of 20:51, 16 April 2009

Summary

Function: string llGetRegionName( );

Returns a string that is the current region name

Examples

<lsl> // Say what would be said by "Copy SLURL to clipboard" in the Map of the standard client

string wwGetSLUrl() {

   string globe = "http://slurl.com/secondlife";
   string region = llGetRegionName();
   vector pos = llGetPos();
   string posx = (string)llRound(pos.x);
   string posy = (string)llRound(pos.y);
   string posz = (string)llRound(pos.z);
   return (globe + "/" + region +"/" + posx + "/" + posy + "/" + posz);

}

default {

   state_entry()
   {
       llOwnerSay( wwGetSLUrl() );
   }

}

</lsl>

See Also

Deep Notes

Search JIRA for related Issues

Signature

function string llGetRegionName();