(info) This AI is still in early stages of development.

now

Return current universal time expressed as milliseconds since midnight, January 1, 1970.

 

Syntax

now; // current universal time

Return value

Returns the current universal time expressed in milliseconds since 00:00:00 on January 1, 1970 UTC.

This is directly equivalent to doing: (new Date()).getTime();

Example

Time how long it takes to do some stuff
function foo() {
  var start = now;
  // do some stuff
  var end = now;
 
  console("time taken to do stuff = "+(end-start)+"ms");
}
 
foo(); // outputs console msg showing time taken
Availability STABLE

This feature requires:

Contents

Jump to:

See also

Related articles:

Globals

Topics:

  • NativeAllows access to JS API natives that have been replaced or removed by the Define API...
  • toArray()Convert an array-like object in to an array...
  • nowReturn current universal time expressed as milliseconds since midnight, January 1, 1970.
  • out()Message output handler.
    • out.HOSTOutputs the message to the game host via in-game chat .
    • out.DEFAULTOutputs the message via out.HOST or out.CONSOLE depending on Warzone version.
    • out.ERROROutputs the message as an exception.
    • out.DEBUGOutput message to debug().
    • out.CONSOLEOutput message to console().
    • out.ASSERTAsserts whether config is truthy, and if not throws a game assert and a Javascript error...
    • out.CHATOutputs the message to allies of the script player via in-game chat.
    • out.RETURNReturns the message to the calling script.
  • difficultyScale()Select a value based on difficulty level...
  • globalA global reference to the global object...