# SB_SETUP_DEVICENAME

Sets the device name and device creator for your statistics purposes (you will be able to see who is using your device).

## Command usage

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

## API parameters

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

| Variable | Required | Description |
|----------|----------|-------------|
| str      | yes      | device name (given by the creator) |
| id       | yes      | creator avatar's UUID |

## Comments

This command is to set the device name for your statistics purposes (you will be able to see who is using your device).

The list of devices is being displayed in "Developer" menu at SmartBots account.

* We advice to put version number along with the device name. This will allow you to see all residents using old and outdated devices, and contact them.
* The author's UUID is required to show your all active devices to the author.

## Example

```csharp
string deviceName = "My Device v1.0";
key creator = llGetCreator();

llMessageLinked(LINK_SET, SB_SETUP_DEVICENAME, deviceName, creator);
```