> For the complete documentation index, see [llms.txt](https://docs.anotherlevel.it/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.anotherlevel.it/documentation/shrine/configuration.md).

# Configuration

## Editor GUI Configuration

{% hint style="info" %}
You can open the in-game editor with the command: **/shrine editor.**
{% endhint %}

### Create Shrine

To create a new Shrine, you can use the command **/shrine editor.** Once you have opened the editor, click on "**Create Shrine.**" After clicking, you will need to **enter the desired ID name** for the shrine, such as shrine-1.

<figure><img src="https://3067097874-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FJ9IRlbZGFV9BglNLT9MA%2Fuploads%2Fvd7lwaxLowafoGnl43Jq%2F2023-05-28_00.23.10.png?alt=media&amp;token=8100bf76-a8b4-4d81-93aa-2cec34c94b03" alt="" width="324"><figcaption></figcaption></figure>

### Modify your Shrine

Congratulations! You have created your shrine! Now let's see what we need to do to modify it.

Open the /shrine editor. Once you have opened the editor, **click on "Modify Shrine."**

<figure><img src="https://3067097874-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FJ9IRlbZGFV9BglNLT9MA%2Fuploads%2FohdI9g4lgQdhv2cqGw8f%2F2023-05-28_00.26.17.png?alt=media&amp;token=df3657e0-7197-4b92-91a7-251d85eaef37" alt="" width="375"><figcaption></figcaption></figure>

After clicking, **select the shrine you want edit**

<figure><img src="https://3067097874-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FJ9IRlbZGFV9BglNLT9MA%2Fuploads%2F0q3JKXDytGbUtcJOquBU%2F2023-05-28_00.26.10.png?alt=media&amp;token=bc1cc944-4749-4f73-aa8b-f6d53a3877a9" alt="" width="287"><figcaption></figcaption></figure>

After clicking, you will have access to the selected Shrine editor, where you can edit all parameters of your shrine.

<figure><img src="https://3067097874-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FJ9IRlbZGFV9BglNLT9MA%2Fuploads%2FjOUO3BtHt17NKIlUbmpv%2F2023-05-28_00.33.21.png?alt=media&amp;token=0146d794-8ec9-445a-9484-b9de0cbee1f9" alt=""><figcaption></figcaption></figure>

## File configuration&#x20;

{% hint style="info" %}
Configuration files can be found in the plugins folder → Shrines → shrines.yml
{% endhint %}

Default configuration file with explainations:

```yaml
shrines:
  shrines-1: #SHRINES ID
    permission: 'shrines.shrines-1' #If player have the permission he can use the shrine
    item:
      completed:
        icon: STONE_BRICKS #Icon of the shrine teleport GUI
        displayname: '<yellow>Shrine 1 item' #Display name of the shrine
        lore:
          - '<rainbow>This is a custom lore!' #Lore of the shrine teleport GUI
        custom-model-data: 1000 #Custom model data of the shrine teleport GUI
        slots: # you can set the item for one or more slots
          - 0
          - 1
          - 2
          - 3
      incomplete:
        icon: STONE_BRICKS #Icon of the shrine teleport GUI
        displayname: '<yellow>Shrine 1 item' #Display name of the shrine
        lore:
          - '<rainbow>This is a custom lore!' #Lore of the shrine teleport GUI
        custom-model-data: 1000 #Custom model data of the shrine teleport GUI
        slots: # you can set the item for one or more slots
          - 0
          - 1
          - 2
          - 3
    displayname: '<yellow>Shrine 1' #Display name of the shrine
    region: 'shrines-1' #Region name of the shrine
    teleport-location:
      x: 0 #X coordinate
      y: 0 #Y coordinate
      z: 0 #Z coordinate
      world: 'world' #World where the shrine is
    completed: # message you get if you have completed the shrine
      welcome-message-chat: '<gray>Shrine shrines-1!'
      welcome-message-title: '<gray>Shrine shrines-1!'
      welcome-message-subtitle: '<gray>You have completed Shrine shrines-1!'
    unlocked:
      welcome-message-chat: '<gray>Congratulations! You have unlocked the Shrine shrines-1!'
      welcome-message-title: '<gray>Congratulations!'
      welcome-message-subtitle: '<gray>You have unlocked the Shrine!'
    incomplete: # message you get if you have not completed the shrine
      welcome-message-chat: '<gray>Welcome to the Shrine shrines-1!'
      welcome-message-title: '<gray>Welcome to the Shrine shrines-1!'
      welcome-message-subtitle: '<gray>Incompleted Shrine shrines-1!'
```
