mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-01-15 09:57:39 +01:00
39 lines
841 B
Markdown
39 lines
841 B
Markdown
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|||
|
|
|||
|
[Home](./index.md) > [bitburner](./bitburner.md) > [NS](./bitburner.ns.md) > [getServerMoneyAvailable](./bitburner.ns.getservermoneyavailable.md)
|
|||
|
|
|||
|
## NS.getServerMoneyAvailable() method
|
|||
|
|
|||
|
Returns the amount of money available on a server. Running this function on the home computer will return the player’s money.
|
|||
|
|
|||
|
<b>Signature:</b>
|
|||
|
|
|||
|
```typescript
|
|||
|
getServerMoneyAvailable(host: Host): number;
|
|||
|
```
|
|||
|
|
|||
|
## Parameters
|
|||
|
|
|||
|
| Parameter | Type | Description |
|
|||
|
| --- | --- | --- |
|
|||
|
| host | [Host](./bitburner.host.md) | Host or IP of target server |
|
|||
|
|
|||
|
<b>Returns:</b>
|
|||
|
|
|||
|
number
|
|||
|
|
|||
|
Amount of money available on the server.
|
|||
|
|
|||
|
## Remarks
|
|||
|
|
|||
|
0.1 GB
|
|||
|
|
|||
|
## Example
|
|||
|
|
|||
|
|
|||
|
```js
|
|||
|
getServerMoneyAvailable("foodnstuff");
|
|||
|
getServerMoneyAvailable("home"); //Returns player's money
|
|||
|
```
|
|||
|
|