Millisec

From Second Life Wiki
Revision as of 12:58, 4 September 2011 by Nexii Malthus (talk | contribs) (Created page with "{{LSL Header|User-Defined Functions|Nexii's User Page}} <!-- please do not remove added links --> <div style="floa…")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Summary

User-Defined Function: integer Millisec( string Stamp );

Returns an integer of milliseconds that is within a months range, starting from -617316353 to 2147483547.

  • Stamp: a string formatted as it comes from llGetTimestamp

<lsl> integer Millisec(string Stamp) {

   return (integer)llGetSubString(Stamp, 8, 9) * 86400000 + // Days
       (integer)llGetSubString(Stamp, 11, 12) * 3600000 + // Hours
       (integer)llGetSubString(Stamp, 14, 15) * 60000 + // Minutes
       llRound(((float)llGetSubString(Stamp, 17, -2) * 1000.0)) // Seconds.Milliseconds
       - 617316353; // Offset to fit between [-617316353,2147483547]

} /*// Released to Public Domain without limitation. Created by Nexii Malthus. //*/

</lsl>

Caveats

  • Accurate to within a month