llGetRegionName

From Second Life Wiki
Revision as of 22:14, 15 April 2009 by Ppaatt Lynagh (talk | contribs) (Link with region like llGetPos does)
Jump to navigation Jump to search

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

Functions

•  llGetPos
•  llGetSimulatorHostname

Deep Notes

Search JIRA for related Issues

Signature

function string llGetRegionName();