Skip to main content
Configuration file uses YAML as their serialization format, please follow structure while editing it.

Update Checker

Should plugin automatically check if newer version of AntiBot is available.
update-checker: true

Verification Procedure Timeout

How much time (in seconds) player have to complete entire verification procedure list.
verification-procedure-timeout: 60

Verification Challenge Pool

This field contains every challenge which may be drawn to player.
verification-challenge-pool:
  - type: COLLECT_ITEMS
    translation: Collect {amount}x Iron Ore.
    extra:
      gather: IRON_ORE
  - type: COLLECT_ITEMS
    translation: Collect {amount}x Diamond.
    extra:
      gather: DIAMOND_ORE
  - type: COLLECT_ITEMS
    translation: Collect {amount}x Coal Ore.
    extra:
      gather: COAL_ORE
  - type: COLLECT_ITEMS
    translation: Collect {amount}x Logs.
    extra:
      gather: LOG
  - type: CLICK_BLOCK
    translation: Use anvil {times} times.
    extra:
      click: ANVIL
  - type: CLICK_BLOCK
    translation: Use crafting table {times} times.
    extra:
      click: CRAFTING_TABLE
  - type: CLICK_BLOCK
    translation: Use furnace {times} times.
    extra:
      click: FURNACE
  - type: SNEAK
    translation: Sneak {times} times.
  - type: WALK_TO
    translation: Follow particles displayed above you.
  - type: EAT_FOOD
    translation: Eat until your food bar is full.
Entry Structure
type: Enum[COLLECT_ITEMS,CLICK_BLOCK,SNEAK,WALK_TO,EAT_FOOD]
  translation: String[] # Placeholders: {amount}, {times}
  extra: # Extra Data
    gather: Enum[Item] # Only for type == COLLECT_ITEMS
    click: Enum[Item]  # Only for type == CLICK_BLOCK
    red: Float         # Only for type == WALK_TO
    green: Float       # Only for type == WALK_TO
    blue: Float        # Only for type == WALK_TO
    scale: Float       # Only for type == WALK_TO
References:

Verification Procedure

This field contains entire verification procedure which will be applied to player before they’ll be able to join your server.
verification-procedure:
  - trigger: BRAND_CHECK
  - trigger: SETTINGS_CHECK
  - trigger: GRAVITY_CHECK
    expression: onlineMode
  - trigger: CAPTCHA_CHECK
    expression: '!onlineMode && random'
  - trigger: CHALLENGE
    expression: '!onlineMode || !brandCheck || !settingsCheck'
Entry Structure
trigger: Enum[BRAND_CHECK,SETTINGS_CHECK,GRAVITY_CHECK,CAPTCHA_CHECKCHALLENGE]
expression: String
Available Placeholders for Expression:
  • onlineMode
    Returns: Boolean
  • protocol
    Returns: Integer
  • brandCheck
    Returns: Boolean
  • settingsCheck
    Returns: Boolean
  • ping
    Returns: Integer
References:

Captcha Fake Code Length

How many letters should have fake code behind real captcha code.
captcha-fake-code-length: 4

Analyze Addresses

Should player ip address be analyzed by ip-api.com upon joining.
analyze-addresses: true

Prevent Proxy Connections

Should players flagged as Hosting, Proxy and/or VPN be blocked.
prevent-proxy-connections: true

Blocked ISPs

A list of blocked Internet Service Providers which’ll not be able to join server.
blocked-isp: []

Blocked Countries

A list of blocked countries in ISO 3166 or ISO 3166-1 which’ll not be able to join server.
blocked-countries: []

Verification Persistance Duration

How long (in seconds) player will skip next verifications after successful once.
verification-persistence-duration: 2592000

Verification Persistance Duration

How often (in seconds) expired verification records should be removed.
cleanup-interval: 86400

Database Type

Type of database in which verification cache records will be stored.
Available: SQLITE, MYSQL
database-type: SQLITE

Database Hostname

Address for database, only used if database type is MYSQL.
hostname: localhost

Database Port

Port of database, only used if database type is MYSQL.
port: 3306

Database Name

Name of database, only used if database type is MYSQL.
database: antibot

Database Username

Database account name, only used if database type is MYSQL.
username: root

Database Password

Database account password, only used if database type is MYSQL.
password: password

Database SSL

Should SSL be used in comunication with database.
ssl: false

Database Pool Size

How large should be connection pool to database.
pool-size: 4

Database Connection Timeout

timeout: 30000