# SB_SETUP_SETLINK

Commands AdminBot to use specific link number for `llMessageLinked` calls instead of `LINK_SET`.

## Command usage

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

## API parameters

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

| Variable | Required | Description |
|----------|----------|-------------|
| str      | yes      | New link number to receive AdminBot events (as a string). |
| id       | yes      | \--         |

## Comments

This command is used to optimize your device's performance in **high-prim objects**.  
By default, AdminBot sends events to `LINK_SET`. Using this command, you can instruct AdminBot to send events to a **specific prim** by providing its link number.

## Example

```csharp
llMessageLinked(LINK_SET, SB_SETUP_SETLINK, "15", NULL_KEY);
```