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

# AuthMe Synchronization

> Synchronize Minecraft in-game AuthMe accounts with the web platform via MySQL database bridge.

The Crafter AuthMe module synchronizes in-game player registrations from **AuthMeReloaded** with your web platform's user database, allowing unified account credentials across both web and server.

Navigate to [Dashboard > Modules > AuthMe](https://app.crafter.net.tr/tr/dashboard/modules/authme) to configure the bridge.

<Frame caption="AuthMe Module Configuration Interface">
  <img src="https://mintcdn.com/crafter/eN0URdKSHc4gsSVe/images/240764e6-83ca-4adf-953a-53a1d514cce9.png?fit=max&auto=format&n=eN0URdKSHc4gsSVe&q=85&s=b7d0e10732ea2727afc2090838db77bf" alt="AuthMe Settings" width="1867" height="945" data-path="images/240764e6-83ca-4adf-953a-53a1d514cce9.png" />
</Frame>

***

## Setup & Configuration

<Steps>
  <Step title="Enable Module">
    Toggle on the module switch in the top right corner.
  </Step>

  <Step title="Select Password Hashing Algorithm">
    * **Table Name:** Table identifier (default: `authme`).
    * **Password Hash:** Choose `BCRYPT` (Recommended).
  </Step>

  <Step title="Update AuthMe config.yml">
    Configure MySQL parameters in `plugins/AuthMe/config.yml`:

    ```yaml config.yml theme={null}
    DataSource:
      backend: 'MYSQL'
      mySQLHost: '77.90.53.110'
      mySQLPort: '12783'
      mySQLDatabase: 'cw_your_database'
      mySQLUsername: 'u_your_username'
      mySQLPassword: 'YourPassword'
      mySQLTableName: 'authme'

    security:
      passwordHash: 'BCRYPT'
    ```
  </Step>

  <Step title="Save and Reload">
    Save in the dashboard and run `/authme reload` on your Minecraft server.
  </Step>
</Steps>
