OsUnixTimeToTimestamp

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
m (Cosmetic)
m (Replace script)
Line 5: Line 5:
 
|additional_info=This function was added in 0.7.2-post-fixes
 
|additional_info=This function was added in 0.7.2-post-fixes
 
|function_syntax=string osUnixTimeToTimestamp(integer epoch);
 
|function_syntax=string osUnixTimeToTimestamp(integer epoch);
 +
|description=This function allows an input Unix time to be converted to an llGetTimeStamp() format. Please note that there will be no second fractions. This is because the implementation works with seconds only.
 
|ossl_example=<source lang="lsl">
 
|ossl_example=<source lang="lsl">
 
//
 
//
// osUnixTimeToTimestamp Script Example
+
// llGetUnixTime Script Example
 +
// Author: djphil
 
//
 
//
 
// Prints something similar to this:
 
// [01:00] Object: 2020-11-24T22:32:29.3743203Z
 
// [01:00] Object: 2020-11-24T22:32:29.0000000Z
 
  
 
default
 
default
Line 18: Line 16:
 
     state_entry()
 
     state_entry()
 
     {
 
     {
         llOwnerSay(llGetTimestamp());
+
         llSay(PUBLIC_CHANNEL, "Touch to hear llGetUnixTime running.");
         llOwnerSay(osUnixTimeToTimestamp((integer)llGetUnixTime()));
+
 
 +
    }
 +
 
 +
    touch_start(integer number)
 +
    {
 +
         llSay(PUBLIC_CHANNEL, "Clicked at " + (string)llGetUnixTime());
 
     }
 
     }
 
}
 
}
 
</source>
 
</source>
|description=This function allows an input Unix time to be converted to an llGetTimeStamp() format. Please note that there will be no second fractions. This is because the implementation works with seconds only.
+
|additional_info=
|
+
 
}}
 
}}

Revision as of 16:14, 3 December 2020

string osUnixTimeToTimestamp(integer epoch);
This function allows an input Unix time to be converted to an llGetTimeStamp() format. Please note that there will be no second fractions. This is because the implementation works with seconds only.
Threat Level VeryLow
Permissions Use of this function is always allowed by default
Extra Delay 0 seconds
Example(s)
//
// llGetUnixTime Script Example
// Author: djphil
//
 
default
{
    state_entry()
    {
        llSay(PUBLIC_CHANNEL, "Touch to hear llGetUnixTime running.");
 
    }
 
    touch_start(integer number)
    {
        llSay(PUBLIC_CHANNEL, "Clicked at " + (string)llGetUnixTime());
    }
}
Personal tools
General
About This Wiki