2022-10-21 11:16:00 -04:00
<!-- 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.
2023-02-11 13:18:50 -05:00
**Signature:**
2022-10-21 11:16:00 -04:00
```typescript
getHacknetMultipliers(): HacknetMultipliers;
```
2023-02-11 13:18:50 -05:00
**Returns:**
2022-10-21 11:16:00 -04:00
[HacknetMultipliers ](./bitburner.hacknetmultipliers.md )
Object containing the Player’ s hacknet related multipliers.
## Remarks
2022-12-29 20:28:53 -05:00
RAM cost: 0.25 GB
2022-10-21 11:16:00 -04:00
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%).
2023-04-28 14:19:30 -04:00
## Example
2022-10-21 11:16:00 -04:00
2023-04-28 14:19:30 -04:00
```js
const mults = ns.getHacknetMultipliers();
ns.tprint(`production: ${mults.production}` );
ns.tprint(`purchaseCost: ${mults.purchaseCost}` );
2022-10-21 11:16:00 -04:00
```