Difference between revisions of "LlGetSimulatorHostname"

From Second Life Wiki
Jump to navigation Jump to search
m
(EX)
Line 9: Line 9:
|caveats
|caveats
|constants
|constants
|examples
|examples=<pre>
// 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);
        }
    }
}
</pre>
|helpers
|helpers
|also_functions={{LSL DefineRow||[[llGetRegionFPS]]|Gets the region FPS}}
|also_functions={{LSL DefineRow||[[llGetRegionFPS]]|Gets the region FPS}}

Revision as of 15:38, 17 May 2007

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();