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

# LimboAuth

> LimboAuth is a lightweight and fast authentication system for Minecraft servers running in offline mode. It lets players set a password when logging in and ensures account ownership. When integrated with your website, users can log in to the server using the password they created online.

Before integrating your website with LimboAuth, make sure you are using the latest official version. You can download the latest LimboAuth release here:

**For Velocity 3+:**

* LimboAuth: [https://zonely.gen.tr/plugins/zonely-limboauth-1.1.14.jar](https://zonely.gen.tr/plugins/zonely-limboauth-1.1.14.jar)
* LimboAPI: [https://github.com/Elytrium/LimboAPI/releases/download/1.1.26/limboapi-1.1.26.jar](https://github.com/Elytrium/LimboAPI/releases/download/1.1.26/limboapi-1.1.26.jar)
* LimboFilter: [https://github.com/Elytrium/LimboFilter/releases/download/1.1.18/limbofilter-1.1.18.jar](https://github.com/Elytrium/LimboFilter/releases/download/1.1.18/limbofilter-1.1.18.jar)

### 1. Connect the plugin to the database

First, open the `/plugins/LimboAuth/config.yml` file in your server’s main directory.

Edit the database configuration section according to the example below:

```yaml theme={null}
database:
    storage-type: MYSQL
    host: DATABASE_HOST:DATABASE_PORT
    user: DATABASE_USERNAME
    password: DATABASE_PASSWORD
    database: DATABASE_NAME
```

### 2. If passwords appear invalid

If users enter the correct password but still cannot log in, it usually means the **hashing algorithm used by your website does not match LimboAuth’s supported algorithm**.

LimboAuth supports **only the BCRYPT algorithm**. Therefore:

Check the **“Cryptographic Encryption”** setting in your admin panel and set it to **BCRYPT**.

<Check>
  **Congratulations!** You have successfully completed the LimboAuth setup.\
  Your users can now register securely on the website and log in directly to the server.
</Check>
