OsUnixTimeToTimestamp

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
(It is osUnixTimeToTimestamp not llGetUnixTime)
m (It is already a string)
Line 16: Line 16:
 
     state_entry()
 
     state_entry()
 
     {
 
     {
         llSay(PUBLIC_CHANNEL, "Touch to hear osUnixTimeToTimestamp running.");
+
         llSay(PUBLIC_CHANNEL, "Touch to see osUnixTimeToTimestamp usage.");
 
     }
 
     }
 
   
 
   
Line 22: Line 22:
 
     {
 
     {
 
         integer epoch = llGetUnixTime();
 
         integer epoch = llGetUnixTime();
         llSay(PUBLIC_CHANNEL, "Clicked at " + (string)osUnixTimeToTimestamp(epoch));
+
         llSay(PUBLIC_CHANNEL, "Clicked at " + osUnixTimeToTimestamp(epoch));
 
     }
 
     }
 
}
 
}

Revision as of 07:56, 1 January 2021

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)
//
// osUnixTimeToTimestamp Script Example
// Author: djphil
//
 
default
{
    state_entry()
    {
        llSay(PUBLIC_CHANNEL, "Touch to see osUnixTimeToTimestamp usage.");
    }
 
    touch_start(integer number)
    {
        integer epoch = llGetUnixTime();
        llSay(PUBLIC_CHANNEL, "Clicked at " + osUnixTimeToTimestamp(epoch));
    }
}


See Also

Personal tools
General
About This Wiki