bitburner-src/markdown/bitburner.hacknet.hashcost.md
Olivier Gagnon feb0430aff work on doc
2021-10-30 15:46:34 -04:00

986 B

Home > bitburner > Hacknet > hashCost

Hacknet.hashCost() method

This function is only applicable for Hacknet Servers (the upgraded version of a Hacknet Node).

Returns the number of hashes required for the specified upgrade. The name of the upgrade must be an exact match.

Signature:

hashCost(upgName: HashUpgrades): number;

Parameters

Parameter Type Description
upgName HashUpgrades Name of the upgrade of Hacknet Node.

Returns:

number

Number of hashes required for the specified upgrade.

Remarks

RAM cost: 0 GB

Example

var upgradeName = "Sell for Corporation Funds";
if (hacknet.numHashes() > hacknet.hashCost(upgradeName)) {
   hacknet.spendHashes(upgName);
}