Difference between revisions of "LlGetSimulatorHostname"

From Second Life Wiki
Jump to navigation Jump to search
(EX)
(badly programing practices in example)
Line 11: Line 11:
|examples=<pre>
|examples=<pre>
// The beginnings of a region-info script.
// The beginnings of a region-info script.
string region;
string sim;
default
default
{
{
     state_entry()
     state_entry()
     {
     {
         string msg;
         llSetTimerEvent(1.0);
          
    }
         while(TRUE)
    timer()
    {
         string here = llGetRegionName();
         if(region != here)
         {
         {
             msg = "  REGION NAME : " + llGetRegionName() + "\n"
             sim = llGetSimulatorHostname();
                + "  SIM HOSTNAME : " + llGetSimulatorHostname() + "\n"
             region = here;
                + "TIME DIALATION : " + (string)llGetRegionTimeDilation() + "\n"
                + "    REGION FPS : " + (string)llGetRegionFPS() + "\n";
              
            llSetText(msg, <0,1,0>, 1.0);
         }
         }
        llSetText(
                "  REGION NAME : " + region +
              "\n  SIM HOSTNAME : " + sim +
              "\nTIME DIALATION : " + (string)llGetRegionTimeDilation() +
              "\n    REGION FPS : " + (string)llGetRegionFPS(),
            <0,1,0>, 1.0};
     }
     }
}
}

Revision as of 17:11, 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.
string region;
string sim;

default
{
    state_entry()
    {
        llSetTimerEvent(1.0);
    }
    timer()
    {
        string here = llGetRegionName();
        if(region != here)
        {
            sim = llGetSimulatorHostname();
            region = here;
        }
        llSetText(
                "   REGION NAME : " + region + 
              "\n  SIM HOSTNAME : " + sim + 
              "\nTIME DIALATION : " + (string)llGetRegionTimeDilation() +
              "\n    REGION FPS : " + (string)llGetRegionFPS(),
            <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();