mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 08:43:53 +01:00
35 lines
882 B
Markdown
35 lines
882 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||
|
||
[Home](./index.md) > [bitburner](./bitburner.md) > [NS](./bitburner.ns.md) > [getHacknetMultipliers](./bitburner.ns.gethacknetmultipliers.md)
|
||
|
||
## NS.getHacknetMultipliers() method
|
||
|
||
Get hacknet related multipliers.
|
||
|
||
**Signature:**
|
||
|
||
```typescript
|
||
getHacknetMultipliers(): HacknetMultipliers;
|
||
```
|
||
**Returns:**
|
||
|
||
[HacknetMultipliers](./bitburner.hacknetmultipliers.md)
|
||
|
||
Object containing the Player’s hacknet related multipliers.
|
||
|
||
## Remarks
|
||
|
||
RAM cost: 0.25 GB
|
||
|
||
Returns an object containing the Player’s hacknet related multipliers. These multipliers are returned in fractional forms, not percentages (e.g. 1.5 instead of 150%).
|
||
|
||
## Example
|
||
|
||
|
||
```js
|
||
const mults = ns.getHacknetMultipliers();
|
||
ns.tprint(`production: ${mults.production}`);
|
||
ns.tprint(`purchaseCost: ${mults.purchaseCost}`);
|
||
```
|
||
|