# 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** |
|----------|-------------|
| `str`    | The contents of the notecard |
| `id`     | —           |

## Example

```csharp
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);
    }
}
```