BOT_NOTECARD_READ_REPLY
Raised when the contents of a notecard are successfully received.
Reference
This event comes with the following event object:
Variable | Description |
|---|---|
| The contents of the notecard |
| — |
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);
}
}