mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
34 lines
813 B
Markdown
34 lines
813 B
Markdown
|
<!-- 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
|
|||
|
|
|||
|
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%).
|
|||
|
|
|||
|
<b>Signature:</b>
|
|||
|
|
|||
|
```typescript
|
|||
|
getHackingMultipliers(): HackingMultipliers;
|
|||
|
```
|
|||
|
<b>Returns:</b>
|
|||
|
|
|||
|
[HackingMultipliers](./bitburner.hackingmultipliers.md)
|
|||
|
|
|||
|
Object containing the Player’s hacking related multipliers.
|
|||
|
|
|||
|
## Remarks
|
|||
|
|
|||
|
4 GB
|
|||
|
|
|||
|
## Example
|
|||
|
|
|||
|
|
|||
|
```js
|
|||
|
//Example of how this can be used:
|
|||
|
mults = getHackingMultipliers();
|
|||
|
print(mults.chance);
|
|||
|
print(mults.growth);
|
|||
|
```
|
|||
|
|