SysTime

From Wiki
Revision as of 08:52, 27 August 2005 by Kedrick Valorite (Talk | contribs)

Jump to: navigation, search
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