BOT_GET_BALANCE_REPLY
Raised when the bot’s balance is successfully requested.
Reference
This event comes with the following event object:
Variable | Description |
|---|---|
| The bot’s current balance amount |
| — |
Example
link_message( integer sender_num, integer num, string str, key id ) {
if(num==BOT_GET_BALANCE_REPLY) {
llOwnerSay("Bot balance is: L$" + str);
}
}