mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
986 B
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);
}