bitburner-src/markdown/bitburner.ns.gethackingmultipliers.md
2022-12-29 20:28:53 -05:00

1.0 KiB
Raw Blame History

Home > bitburner > NS > getHackingMultipliers

NS.getHackingMultipliers() method

Get hacking related multipliers.

Signature:

getHackingMultipliers(): HackingMultipliers;

Returns:

HackingMultipliers

Object containing the Players hacking related multipliers.

Remarks

RAM cost: 0.25 GB

Returns an object containing the Players hacking 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 = getHackingMultipliers();
print(mults.chance);
print(mults.growth);

Example 2

// NS2:
// Example of how this can be used:
const {chance, growth} = ns.getHackingMultipliers();
print(chance);
print(growth);