llGetSimulatorHostname

From Second Life Wiki
Revision as of 15:38, 17 May 2007 by Awsoonn Rawley (talk | contribs) (EX)
Jump to navigation Jump to search

Summary

Function: string llGetSimulatorHostname( );

Returns a string that is the hostname of the machine the script is running on (same as string in viewer Help dialog)

Caveats

  • This function causes the script to sleep for 10.0 seconds.
All Issues ~ Search JIRA for related Bugs

Examples

// The beginnings of a region-info script.
default
{
    state_entry()
    {
        string msg;
        
        while(TRUE)
        {
            msg = "   REGION NAME : " + llGetRegionName() + "\n"
                + "  SIM HOSTNAME : " + llGetSimulatorHostname() + "\n"
                + "TIME DIALATION : " + (string)llGetRegionTimeDilation() + "\n"
                + "    REGION FPS : " + (string)llGetRegionFPS() + "\n";
            
            llSetText(msg, <0,1,0>, 1.0);
        }
    }
}

See Also

Functions

•  llGetRegionFPS Gets the region FPS
•  llGetRegionTimeDilation Gets the region time dilation

Articles

•  Simulator IP Addresses

Deep Notes

Search JIRA for related Issues

Signature

function string llGetSimulatorHostname();