mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 16:53:54 +01:00
dc9b1050bf
Includes my change and a bunch of prior changes
30 lines
1.0 KiB
Markdown
30 lines
1.0 KiB
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [bitburner](./bitburner.md) > [HackingFormulas](./bitburner.hackingformulas.md) > [growPercent](./bitburner.hackingformulas.growpercent.md)
|
|
|
|
## HackingFormulas.growPercent() method
|
|
|
|
Calculate the percent a server would grow to. Not exact due to limitations of mathematics. (Ex: 3.0 would would grow the server to 300% of its current value.)
|
|
|
|
**Signature:**
|
|
|
|
```typescript
|
|
growPercent(server: Server, threads: number, player: Person, cores?: number): number;
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --- | --- | --- |
|
|
| server | [Server](./bitburner.server.md) | Server info, typically from [getServer](./bitburner.ns.getserver.md) |
|
|
| threads | number | Amount of thread. |
|
|
| player | [Person](./bitburner.person.md) | Player info, typically from [getPlayer](./bitburner.ns.getplayer.md) |
|
|
| cores | number | _(Optional)_ Number of cores on the computer that will execute grow. |
|
|
|
|
**Returns:**
|
|
|
|
number
|
|
|
|
The calculated grow percent.
|
|
|