Difference between revisions of "SysTime"

From Wiki
Jump to: navigation, search
m
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
== #sysTime ==
+
{{header|Miscellaneous|ro|Represents the time passed since 01/Jan/1980 UTC (it is timezone independant) in millisecond increments. It can be useful for timing and time calculations. it is also not affected by overflow issues or speedhack tools.}}
'''Miscellaneous System Variables'''
+
=== Description ===
+
{{ro}}
+
 
+
Represents the time passed since 01/Jan/1980 UTC (it is timezone independant) in millisecond increments. It can be useful for timing and time calculations. it is also not affected by overflow issues or speedhack tools.
+
  
 
==== Example ====
 
==== Example ====
Line 20: Line 15:
  
 
</pre>
 
</pre>
==== See Also ====
+
{{footer}}
{|
+
| Width=200px | [[Var_date|&#0035;date]] || Width=200px | [[Var_time|&#0035;time]] || Width=200px | [[Var_sCnt|&#0035;sCnt]] || Width=200px | [[Var_sCnt2|&#0035;sCnt2]]
+
|}
+
----
+
{|
+
| Width=200px | [[Main_Page]] || Width=200px | [[Documentation]] || Width=200px | [[Documentation#Miscellaneous_Variables|Miscellaneous System Variables]]
+
|}
+

Revision as of 11:58, 26 August 2005

Represents the time passed since 01/Jan/1980 UTC (it is timezone independant) in millisecond increments. It can be useful for timing and time calculations. it is also not affected by overflow issues or speedhack tools.

Example


set %startTime #sysTime
for %testLoop 1 1000
{
  set %testCnt %testCnt + 1
}
set %endTime %startTime - #sysTime
Display ok time elapsed in milliseconds: , #spc , %endTime
halt

See also

Main Page Documentation