mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
24 lines
717 B
ReStructuredText
24 lines
717 B
ReStructuredText
hashCost() Netscript Function
|
|
=============================
|
|
|
|
.. warning:: This page contains spoilers for the game
|
|
|
|
.. js:function:: hashCost(upgName)
|
|
|
|
:RAM cost: 0 GB
|
|
:param string upgName: Name of upgrade to get the cost of. Must be an exact match
|
|
:returns: Number of hashes required for the specified upgrade. The name of
|
|
the upgrade must be an exact match.
|
|
|
|
.. note:: This function is only applicable for Hacknet Servers (the upgraded version
|
|
of a Hacknet Node).
|
|
|
|
Example:
|
|
|
|
.. code:: javascript
|
|
|
|
upgradeName = "Sell for Corporation Funds";
|
|
if (hacknet.numHashes() > hacknet.hashCost(upgradeName)) {
|
|
hacknet.spendHashes(upgName);
|
|
}
|