bitburner-src/markdown/bitburner.ns.gethacknetmultipliers.md
omuretsu 06a985bdf8 Revert "Remove markdown from git tracking (#139)"
This reverts commit bbb6e3f309935aebac74ddb1fbeec12dfb7540b1.
2022-10-21 11:16:00 -04:00

1.0 KiB
Raw Blame History

Home > bitburner > NS > getHacknetMultipliers

NS.getHacknetMultipliers() method

Get hacknet related multipliers.

Signature:

getHacknetMultipliers(): HacknetMultipliers;

Returns:

HacknetMultipliers

Object containing the Players hacknet related multipliers.

Remarks

RAM cost: 4 GB

Returns an object containing the Players hacknet related multipliers. These multipliers are returned in fractional forms, not percentages (e.g. 1.5 instead of 150%).

Example 1

// NS1:
// Example of how this can be used:
var mults = getHacknetMultipliers();
print(mults.production);
print(mults.purchaseCost);

Example 2

// NS2:
// Example of how this can be used:
const {production, purchaseCost} = ns.getHacknetMultipliers();
print(production);
print(purchaseCost);