# BOT_NOTECARD_CREATE_REPLY

Raised when a new notecard is successfully created.

## Reference

This event comes with the following event object:

| **Variable** | **Description** |
|----------|-------------|
| `str`    | —           |
| `id`     | UUID of the newly created notecard |

## Example

```csharp
link_message( integer sender_num, integer num, string str, key id ) {
    if(num==BOT_NOTECARD_CREATE_REPLY) {
    	llOwnerSay("UUID of new notecard is " + (string)id);
    }
}
```