2022-10-21 17:16:00 +02:00
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home ](./index.md ) > [bitburner ](./bitburner.md ) > [NS ](./bitburner.ns.md ) > [getHackingMultipliers ](./bitburner.ns.gethackingmultipliers.md )
## NS.getHackingMultipliers() method
Get hacking related multipliers.
2023-02-11 19:18:50 +01:00
**Signature:**
2022-10-21 17:16:00 +02:00
```typescript
getHackingMultipliers(): HackingMultipliers;
```
2023-02-11 19:18:50 +01:00
**Returns:**
2022-10-21 17:16:00 +02:00
[HackingMultipliers ](./bitburner.hackingmultipliers.md )
Object containing the Player’ s hacking related multipliers.
## Remarks
2022-12-30 02:28:53 +01:00
RAM cost: 0.25 GB
2022-10-21 17:16:00 +02:00
Returns an object containing the Player’ s hacking related multipliers. These multipliers are returned in fractional forms, not percentages (e.g. 1.5 instead of 150%).
2023-04-28 20:19:30 +02:00
## Example
2022-10-21 17:16:00 +02:00
2023-04-28 20:19:30 +02:00
```js
const mults = ns.getHackingMultipliers();
2024-05-23 10:42:47 +02:00
ns.tprint(`chance: ${mults.chance}`);
ns.tprint(`growth: ${mults.growth}`);
2022-10-21 17:16:00 +02:00
```