# BOT_DIALOG_REPLY

Commands bot to reply to a dialog menu.

## Variables

The following table shows input values (you send them with the API call) and returned output values.

| **Variable** | **Description** |
|----------|-------------|
| `str`    | Channel to reply on and button to select, separated by "\\n". |
| `id`     | UUID of the object that gave the dialog menu. |

## Example

```csharp
// Select button 5 and reply on channel -123
llMessageLinked(LINK_SET, BOT_DIALOG_REPLY, "-123\n5", "uuid of object");
```