Перейти к содержимому
Mineforgian

ClientBlock

Filter and list Minecraft clients/brands at server side, block or allow them. Fabric Mod.

Загрузки
1K
Подписчики
5
Обновлён
14 декабря 2025 г.
Лицензия
MIT

Опубликован 5 октября 2024 г.

ClientBlock

A Fabric Mod for blocking/filtering Minecraft clients (JUST SERVER SIDE!).

Configuration

The configuration file is created automatically inside your Fabric Mods configurations folder. The file is named clientblock.json which has this structure:

{
  // Json schema for having types in config
  "$schema": "https://raw.githubusercontent.com/arch-fan/ClientBlock/refs/heads/main/config.schema.json",
  "action": "block", // "block" or "allow" (block by default)
  "clients": [
    "fabric"
  ], // Array of clients to block or allow (based in action mode) (empty by default)
  "kickMessage": "Custom kick message", // The client is not allowed! ("The client is not allowed!" by default)
  "logger": false, // Where to log every single person client entering at the server (false by default)
  "whitelist": [
    "PlayerOne"
  ] // Array of players to bypass the client filter (empty by default)
}

Here you can copy the template without comments :)

{
  "$schema": "https://raw.githubusercontent.com/arch-fan/ClientBlock/refs/heads/main/config.schema.json",
  "action": "block",
  "clients": [
    "fabric"
  ],
  "kickMessage": "Custom kick message",
  "logger": false,
  "whitelist": [
    "PlayerOne"
  ]
}

Commands

/clients for listing all clients.

Publication

Actually, the mod is published in two mod providers

Ченджлог

0.1.6Релиз1.21.9, 1.21.10, 1.21.11 · 14 декабря 2025 г.
  • Supporting up to 1.21.11
  • Update Kotlin serialization and Fabric API
0.1.5Релиз1.21.4, 1.21.5, 1.21.6 · 19 июня 2025 г.
  • Supporting 1.21.6
0.1.4Релиз1.21.3, 1.21.4, 1.21.5 · 11 апреля 2025 г.
  • Updated loader version
  • Supporting 1.21.5
0.1.3Релиз1.21.2, 1.21.3, 1.21.4 · 20 марта 2025 г.
  • Now you can exclude players from the filter with the setting "whitelist"
0.1.2Релиз1.21.2, 1.21.3, 1.21.4 · 27 декабря 2024 г.
  • Working from 1.21
  • Json schema available for configuration
  • Updated schema automatically between versions
0.1.1Релиз1.21.2, 1.21.3, 1.21.4 · 27 декабря 2024 г.
  • Mixins come back...
0.1.0Релиз1.21.2, 1.21.3, 1.21.4 · 25 декабря 2024 г.
  • Mixins come back...
0.0.17Релиз1.21.2, 1.21.3, 1.21.4 · 20 декабря 2024 г.
  • Updated dependencies fixed a bug which prevent booting the server.

Комментарии

Загружаем…