getBalance
From SmartBots Developers Docs
Jump to: navigation, search
Retrieves the current bot's L$ balance.
Bot.getBalance(function(result) {
console.log("I have L$" + result.balance);
});
or using a Promise:
Bot.getBalance()
.then(function(result) {
console.log("I have L$" + result.balance);
});
Reference
This command accepts the following parameters:
Variable | Required | Description
| |
---|---|---|---|
getBalance: | |||
Output: | |||
Function returns a Promise with the following data: | |||
success | bool | true if command completed successfully | |
error | string | error string if command has failed |
Examples
For a comprehensive balance management script check the code in Examples section.
See also
- getBalance