# BOT_SETUP_SETOPTIONS

Sets various options for TotalControl.

```csharp
llMessageLinked(LINK_SET, BOT_SETUP_SETOPTIONS, "NO_OWNERCHANGE_RESET", NULL_KEY);
```

## Variables

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

| **Variable** | **Description** |
|----------|-------------|
| `str`    | Options list, separated by commas. See available options below. |
| `id`     | —           |

## Available Options

The following options are currently available:

* `"NO_OWNERCHANGE_RESET"` — TotalControl does not reset itself when the object owner changes.

## Example

```csharp
integer BOT_SETUP_SETOPTIONS = 280104;

default
{
	state_entry()
	{
		llMessageLinked(LINK_SET, BOT_SETUP_SETOPTIONS, "NO_OWNERCHANGE_RESET", NULL_KEY);
	}
}
```