Changelog and markdown update

This commit is contained in:
Snarling
2023-04-28 14:19:30 -04:00
parent e1aff1a315
commit 8f684fa74c
41 changed files with 397 additions and 1002 deletions

View File

@@ -23,25 +23,12 @@ RAM cost: 0.25 GB
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%).
## 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}`);
```