mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-17 23:08:36 +02:00
Changelog and markdown update
This commit is contained in:
@@ -23,25 +23,12 @@ RAM cost: 0.25 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
|
||||
## Example
|
||||
|
||||
|
||||
```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);
|
||||
```js
|
||||
const mults = ns.getHackingMultipliers();
|
||||
print(`chance: ${mults.chance}`);
|
||||
print(`growthL ${mults.growth}`);
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user