bitburner-src/markdown/bitburner.ns.getscriptincome.md

35 lines
1.2 KiB
Markdown
Raw Normal View History

2021-10-30 18:34:14 +02:00
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [bitburner](./bitburner.md) &gt; [NS](./bitburner.ns.md) &gt; [getScriptIncome](./bitburner.ns.getscriptincome.md)
## NS.getScriptIncome() method
Get the income of a script.
2021-10-30 18:34:14 +02:00
<b>Signature:</b>
```typescript
2022-08-17 14:50:05 +02:00
getScriptIncome(script: string, host: string, ...args: (string | number | boolean)[]): number;
2021-10-30 18:34:14 +02:00
```
2022-08-17 14:50:05 +02:00
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| script | string | Filename of script. |
| host | string | Server on which script is running. |
| args | (string \| number \| boolean)\[\] | Arguments that the script is running with. |
2021-10-30 18:34:14 +02:00
<b>Returns:</b>
2022-08-17 14:50:05 +02:00
number
2021-10-30 18:34:14 +02:00
Amount of income the specified script generates while online.
## Remarks
2021-10-30 21:46:34 +02:00
RAM cost: 0.1 GB
2021-10-30 18:34:14 +02:00
Returns the amount of income the specified script generates while online (when the game is open, does not apply for offline income). Remember that a script is uniquely identified by both its name and its arguments. So for example if you ran a script with the arguments “foodnstuff” and “5” then in order to use this function to get that scripts income you must specify those same arguments in the same order in this function call.