> ## Documentation Index
> Fetch the complete documentation index at: https://docs.eagleanti.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Configuration

<Steps>
  <Step title="Configure EC_AC">
    Open:

    ```text theme={null}
    resources/[EC]/EC_AC/configs/shared_config.lua
    ```

    Set the framework:

    <Tabs>
      <Tab title="ESX">
        ```lua theme={null}
        EG_AC.Core = "es_extended"
        ```
      </Tab>

      <Tab title="QBCore">
        ```lua theme={null}
        EG_AC.Core = "qb-core"
        ```
      </Tab>

      <Tab title="Standalone">
        ```lua theme={null}
        EG_AC.Core = "other"
        ```
      </Tab>

      <Tab title="vRP">
        ```lua theme={null}
        EG_AC.Core = "vrp"
        ```
      </Tab>
    </Tabs>
  </Step>

  <Step title="Configure EC-PANEL">
    Open:

    ```text theme={null}
    resources/[EC]/EC-PANEL/config.lua
    ```

    Set the core:

    <Tabs>
      <Tab title="ESX">
        ```lua theme={null}
        Config.Framework = "es_extended"
        ```
      </Tab>

      <Tab title="QBCore">
        ```lua theme={null}
        Config.Framework = "qbcore"
        ```
      </Tab>

      <Tab title="Standalone">
        ```lua theme={null}
        Config.Framework = "standalone"
        ```
      </Tab>

      <Tab title="vRP">
        ```lua theme={null}
        Config.Framework = "vrp"
        ```
      </Tab>
    </Tabs>
  </Step>

  <Step title="Set language and Discord appeal link">
    Open:

    ```text theme={null}
    resources/[EC]/EC_AC/configs/shared_config.lua
    ```

    Configure the interface language:

    <Tabs>
      <Tab title="English">
        ```lua theme={null}
        EG_AC.Locale = "en"
        ```
      </Tab>

      <Tab title="German">
        ```lua theme={null}
        EG_AC.Locale = "de"
        ```
      </Tab>

      <Tab title="Arabic">
        ```lua theme={null}
        EG_AC.Locale = "ar"
        ```
      </Tab>
    </Tabs>

    Set the Discord invite link shown to banned players:

    ```lua theme={null}
    EG_AC.DiscordServer = "https://discord.gg/yourserver"
    ```

    <Tip>
      Use a permanent Discord invite. If the link expires, banned players won’t be able to appeal.
    </Tip>

    <Warning>
      This link is displayed directly in the ban screen. Make sure it points to your **official support server**.
    </Warning>
  </Step>

  <Step title="Permissions">
    Permissions are documented on a separate page because they’re long and framework-specific.

    **Go here:** **[Permissions](/permissions)**

    <Tip>
      If staff can’t use the panel or gets flagged while moderating, it’s almost always a permissions mismatch.
    </Tip>
  </Step>
</Steps>
