# BOT_GET_BALANCE_REPLY

Raised when the bot’s balance is successfully requested.

## Reference

This event comes with the following event object:

| **Variable** | **Description** |
|----------|-------------|
| `str`    | The bot’s current balance amount |
| `id`     | —           |

## Example

```csharp
link_message( integer sender_num, integer num, string str, key id ) {
    if(num==BOT_GET_BALANCE_REPLY) {
    	llOwnerSay("Bot balance is: L$" + str);
    }
}
```