BOT_NOTECARD_READ_REPLY
From SmartBots Developers Docs
Jump to: navigation, search
Raised when when balance is successfully requested
Reference
This event comes with the following event object:
Variable | Required | Description | |
---|---|---|---|
event object properties: | |||
str | the contents of the notecard | ||
id | -- |
Example
link_message( integer sender_num, integer num, string str, key id ) {
if(num==BOT_NOTECARD_READ_REPLY) {
llOwnerSay("The contents of the notecard is: " + str);
}
}
- BOT NOTECARD READ REPLY