bitburner-src/markdown/bitburner.ns.gethackingmultipliers.md

34 lines
823 B
Markdown
Raw Normal View History

2021-10-30 12:34:14 -04:00
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [bitburner](./bitburner.md) &gt; [NS](./bitburner.ns.md) &gt; [getHackingMultipliers](./bitburner.ns.gethackingmultipliers.md)
## NS.getHackingMultipliers() method
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%).
<b>Signature:</b>
```typescript
getHackingMultipliers(): HackingMultipliers;
```
<b>Returns:</b>
[HackingMultipliers](./bitburner.hackingmultipliers.md)
Object containing the Players hacking related multipliers.
## Remarks
2021-10-30 15:46:34 -04:00
RAM cost: 4 GB
2021-10-30 12:34:14 -04:00
## Example
2021-10-30 15:46:34 -04:00
```ts
2021-10-30 12:34:14 -04:00
//Example of how this can be used:
mults = getHackingMultipliers();
print(mults.chance);
print(mults.growth);
```