# How to add SHELL Tier

## How to

{% hint style="info" %}
**How i add a new interior tier?**\
\
This part is very important, it allows you to add new SHELLs informations.\
Navigate to **Config.Tiers** on config file, should be something like this:
{% endhint %}

<figure><img src="https://3317815405-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FAcw6nAW8IGe15skCfMoj%2Fuploads%2FkQuGgaz3fSzRz9eDJGG5%2Fimage.png?alt=media&#x26;token=1e01373a-0730-40d5-a54c-4b5ecdadebec" alt=""><figcaption><p>Config file showing Config.Tiers</p></figcaption></figure>

As you can see, there you have **ALL** interiors informations of **JPR Housing System**, the next board, on left side will be the template, on right the example.

{% tabs %}
{% tab title="Template" %}

```lua
["shell_example"] = {
        doorCoords = vector4(0.0, 0.0, 0.0, 0.0), -- "offsets"
        defaultStash = vector3(0.0, 0.0, 0.0), -- auto generated
        defaultWardrobe = vector3(0.0, 0.0, 0.0), -- auto generated
        defaultLogout = vector3(0.0, 0.0, 0.0), -- auto generated
        managementCoords = vector3(0.0, 0.0, 0.0), -- auto generated
        previewImage = "shell image name",
        model = "shell model",
        isShell = true,
},
```

{% endtab %}

{% tab title="Example" %}

```lua
["ApartmentLowShell"] = {
        doorCoords = vector4(4.693, -6.015, 1.11, 358.63), -- "offsets"
        defaultStash = vector3(0.0, 0.0, 0.0), -- auto generated
        defaultWardrobe = vector3(0.0, 0.0, 0.0), -- auto generated
        defaultLogout = vector3(0.0, 0.0, 0.0), -- auto generated
        managementCoords = vector3(0.0, 0.0, 0.0), -- auto generated
        previewImage = "shell_v16low",
        model = "shell_v16low",
        isShell = true,
},
```

{% endtab %}
{% endtabs %}

{% hint style="danger" %}
You are **not suppost** to add **defaultStash** location, **defaultWardrobe** and **defaultLogout** since they are placed by players on shells interiors using the right **commands**, by **default** they are:

**changeStash**\
**changeWardrobe**\
**changeLogout**\
\
(All this commands **can be changed** on **main\_config.lua** file)
{% endhint %}

{% hint style="info" %}
Congratulations, your first SHELL interior is created, now you can see it ingame using the **/createNewHouse** command.
{% endhint %}
