# SB_CHAT_SAY

Sends your message to the group chat.

## Command usage

```csharp
llMessageLinked(LINK_SET, SB_CHAT_SAY, string str, key id);
```

## API parameters

`llMessageLinked` function accepts `str` and `id` parameters. Their meaning for `SB_CHAT_SAY` is explained below:

| Variable | Required | Description |
|----------|----------|-------------|
| str      | yes      | message text |
| id       | yes      | \--         |

## Example

```csharp
llMessageLinked(LINK_SET, SB_CHAT_SAY, "Hello everyone!", NULL_KEY);
```