mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-17 23:08:36 +02:00
Remove markdown from git tracking (#139)
* Will attempt to add as build artifacts using workflow.
This commit is contained in:
@@ -1,47 +0,0 @@
|
||||
<!-- 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.
|
||||
|
||||
<b>Signature:</b>
|
||||
|
||||
```typescript
|
||||
getHackingMultipliers(): HackingMultipliers;
|
||||
```
|
||||
<b>Returns:</b>
|
||||
|
||||
[HackingMultipliers](./bitburner.hackingmultipliers.md)
|
||||
|
||||
Object containing the Player’s hacking related multipliers.
|
||||
|
||||
## Remarks
|
||||
|
||||
RAM cost: 4 GB
|
||||
|
||||
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%).
|
||||
|
||||
## Example 1
|
||||
|
||||
|
||||
```ts
|
||||
// NS1:
|
||||
// Example of how this can be used:
|
||||
var mults = getHackingMultipliers();
|
||||
print(mults.chance);
|
||||
print(mults.growth);
|
||||
```
|
||||
|
||||
## Example 2
|
||||
|
||||
|
||||
```ts
|
||||
// NS2:
|
||||
// Example of how this can be used:
|
||||
const {chance, growth} = ns.getHackingMultipliers();
|
||||
print(chance);
|
||||
print(growth);
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user