# Customization

Looks like you want to change something in commands that are present in this mod, maybe it's a conflict with another same mod or you want to disable something manually. No problem, I will explain it to you.

To change command you can use `commandCustomization` from [general](https://27rogi.gitbook.io/server-toolbox/configuration/general "mention") config. You need to add an entry with command's original literal name and some of these options: `literal`, `permissionLevel`, `aliases` or `disabled`.

{% hint style="info" %}
You can check original command literal using `/st` command
{% endhint %}

Your config section should look like that (example):

```json5
commandCustomization {
    // command literal
    "rename" {
        // fully disables this command
        disabled=true
    }
    "st" {
        // allows you to access this command using /myexample
        aliases=[
            myexample
        ]
        // changes base literal (useful on command conflict)
        literal=stbox
    }
}
```

{% hint style="danger" %}
You are required to restart the server to apply all command changes, currently it's the only one option because commands are registered on server start!
{% endhint %}
