mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-19 06:03:50 +01:00
48 lines
1.0 KiB
Markdown
48 lines
1.0 KiB
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.
|
|||
|
|
|||
|
<b>Signature:</b>
|
|||
|
|
|||
|
```typescript
|
|||
|
getHacknetMultipliers(): HacknetMultipliers;
|
|||
|
```
|
|||
|
<b>Returns:</b>
|
|||
|
|
|||
|
[HacknetMultipliers](./bitburner.hacknetmultipliers.md)
|
|||
|
|
|||
|
Object containing the Player’s hacknet related multipliers.
|
|||
|
|
|||
|
## Remarks
|
|||
|
|
|||
|
RAM cost: 4 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 1
|
|||
|
|
|||
|
|
|||
|
```ts
|
|||
|
// NS1:
|
|||
|
// Example of how this can be used:
|
|||
|
var mults = getHacknetMultipliers();
|
|||
|
print(mults.production);
|
|||
|
print(mults.purchaseCost);
|
|||
|
```
|
|||
|
|
|||
|
## Example 2
|
|||
|
|
|||
|
|
|||
|
```ts
|
|||
|
// NS2:
|
|||
|
// Example of how this can be used:
|
|||
|
const {production, purchaseCost} = ns.getHacknetMultipliers();
|
|||
|
print(production);
|
|||
|
print(purchaseCost);
|
|||
|
```
|
|||
|
|