Garry's Mod Wiki

Revision Difference

string.ToMinutesSecondsMilliseconds#548764

<function name="ToMinutesSecondsMilliseconds" parent="string" type="libraryfunc"> <description>Returns given time in "MM:SS:MS" format.</description> <realm>Shared and Menu</realm> <file line="184">lua/includes/extensions/string.lua</file> <file line="200">lua/includes/extensions/string.lua</file> <args> <arg name="time" type="number">Time in seconds</arg> </args> <rets> <ret name="" type="string">Formatted time</ret> </rets> </function> <example> <description>Example of using this function</description> <code>print( string.ToMinutesSecondsMilliseconds( 61.128 ) )</code> <output>01:01:13</output> </example>