mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-18 13:43:49 +01:00
51 lines
1008 B
Markdown
51 lines
1008 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
|
|||
|
|
|||
|
Get money available on a server.
|
|||
|
|
|||
|
<b>Signature:</b>
|
|||
|
|
|||
|
```typescript
|
|||
|
getServerMoneyAvailable(host: string): number;
|
|||
|
```
|
|||
|
|
|||
|
## Parameters
|
|||
|
|
|||
|
| Parameter | Type | Description |
|
|||
|
| --- | --- | --- |
|
|||
|
| host | string | Host of target server |
|
|||
|
|
|||
|
<b>Returns:</b>
|
|||
|
|
|||
|
number
|
|||
|
|
|||
|
Amount of money available on the server.
|
|||
|
|
|||
|
## Remarks
|
|||
|
|
|||
|
RAM cost: 0.1 GB
|
|||
|
|
|||
|
Returns the amount of money available on a server. Running this function on the home computer will return the player’s money.
|
|||
|
|
|||
|
## Example 1
|
|||
|
|
|||
|
|
|||
|
```ts
|
|||
|
// NS1:
|
|||
|
getServerMoneyAvailable("foodnstuff");
|
|||
|
getServerMoneyAvailable("home"); //Returns player's money
|
|||
|
```
|
|||
|
|
|||
|
## Example 2
|
|||
|
|
|||
|
|
|||
|
```ts
|
|||
|
// NS2:
|
|||
|
ns.getServerMoneyAvailable("foodnstuff");
|
|||
|
ns.getServerMoneyAvailable("home"); // Returns player's money
|
|||
|
```
|
|||
|
|