OsGetSimulatorVersion

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
m (Added permissions and delay information)
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{| width="100%" style="border: thin solid black"
+
{{osslfunc
| colspan="2" align="center" style=background:orange | '''{{SUBPAGENAME}}'''
+
|threat_level=High
|- valign="top"
+
|permissions=true
|'''Threat Level''' || High
+
|delay=0
 
+
|function_syntax=string osGetSimulatorVersion()
|- valign="top"
+
|ossl_example=<source lang = "lsl">
|'''Function Syntax''' || <source lang="lsl">
+
// ----------------------------------------------------------------
OsGetSimulatorVersion()
+
// Example / Sample Script to show function use.
 +
//
 +
// Script Title:    osGetSimulatorVersion.lsl
 +
// Script Author: 
 +
// Threat Level:    High
 +
// Script Source:  http://opensimulator.org/wiki/OsGetSimulatorVersion
 +
//
 +
// Notes: See Script Source reference for more detailed information
 +
// This sample is full opensource and available to use as you see fit and desire.
 +
// Threat Levels only apply to OSSL & AA Functions
 +
// See http://opensimulator.org/wiki/Threat_level
 +
// ================================================================
 +
// Inworld Script Line:    string osGetSimulatorVersion();
 +
//
 +
// Example of osGetSimulatorVersion()
 +
//
 +
default
 +
{
 +
    state_entry() // display @ start
 +
    {
 +
        llSay(0, "Touch me to get the Simulator Version Information using osGetSimulatorVersion");
 +
    }
 +
    touch_end(integer num) // Tell toucher our version
 +
    {
 +
        llInstantMessage(llDetectedKey(0), "Simulator Version: "+osGetSimulatorVersion());
 +
    }
 +
}
 
</source>
 
</source>
|- valign="top"
+
|description=This function returns a string containing the current simulator version.
|'''Example(s)||
+
|
 
+
}}
|}
+
 
+
This function returns a string containing the current simulator version.
+
 
+
[[Category:OSSL Functions]]
+
[[Category:OSSL functions without example]]
+

Latest revision as of 20:12, 25 October 2017

string osGetSimulatorVersion()
This function returns a string containing the current simulator version.
Threat Level High
Permissions Use of this function is always allowed by default
Extra Delay 0 seconds
Example(s)
// ----------------------------------------------------------------
// Example / Sample Script to show function use.
//
// Script Title:    osGetSimulatorVersion.lsl
// Script Author:   
// Threat Level:    High
// Script Source:   http://opensimulator.org/wiki/OsGetSimulatorVersion
//
// Notes: See Script Source reference for more detailed information
// This sample is full opensource and available to use as you see fit and desire.
// Threat Levels only apply to OSSL & AA Functions
// See http://opensimulator.org/wiki/Threat_level
// ================================================================
// Inworld Script Line:    string osGetSimulatorVersion();
//
// Example of osGetSimulatorVersion()
//
default
{
    state_entry() // display @ start
    {
        llSay(0, "Touch me to get the Simulator Version Information using osGetSimulatorVersion");
    }
    touch_end(integer num) // Tell toucher our version
    {
        llInstantMessage(llDetectedKey(0), "Simulator Version: "+osGetSimulatorVersion());
    }
}
Personal tools
General
About This Wiki