This commit is contained in:
Olivier Gagnon
2021-05-31 17:34:23 -04:00
parent 674ce17834
commit 0f266eaa42
26 changed files with 306 additions and 105 deletions

View File

@@ -1,15 +1,17 @@
tFormat() Netscript Function
============================
.. js:function:: tFormat(milliseconds)
.. js:function:: tFormat(milliseconds[, milliPrecision=false])
:RAM cost: 0 GB
:param number milliseconds: Amount of milliseconds to format.
:param number milliPrecision: Display time with millisecond precision.
:returns: milliseconds in the "D M H S" format
Example:
.. code-block:: javascript
tFormat(3000); // returns: "3 seconds"
tFormat(10000000); // returns: "2 hours 46 minutes 40 seconds"
tFormat(3000); // returns: "3 seconds"
tFormat(10000000); // returns: "2 hours 46 minutes 40 seconds"
tFormat(10000023, true); // returns: "2 hours 46 minutes 40.023 seconds"

View File

@@ -92,7 +92,7 @@ its type and name. The following are valid values when specifying the action's t
* blackop
* blackops
**General Actions (Training, Field Analysis, Recruitment)**
**General Actions (Training, Field Analysis, etc)**
* general
* general action
* gen

View File

@@ -10,6 +10,6 @@ purchaseTor() Netscript Function
This function allows you to automatically purchase a TOR router. The cost for purchasing a TOR router using this
function is the same as if you were to manually purchase one.
This function will return true if it successfully purchase a TOR router and false otherwise.
This function will return true if it successfully purchased a TOR router and false otherwise.
:RAM cost: 2 GB