hClans

⭐ — (0 endorsements) 📥 179 downloads 📌 vv1.7 📅 6/19/2026
🟡 Updated this year

By He3HaukaX · adventure

⬇ Download Mod Source: Modrinth ↗ 📅 Updated: 8/4/2026 📅 Created: 6/19/2026

🔍 Analysis

  • 🏆 #284 of 333 adventure mods in this game by downloads

📋 About This Mod

✅ Clan creation and deletion
✅ Clan invites with expiration time
✅ Accept and deny invite commands
✅ Member kick and leave commands
✅ Role-based clan permissions
✅ Configurable owner and member roles

# hClans **hClans** is a configurable clan system for Minecraft servers. It provides clan creation, invites, member management, role-based permissions, clan levels, experience, PlaceholderAPI placeholders, SQLite/MySQL storage and an addon system for extending the core plugin. --- ## Features - Clan creation and deletion - Clan invites with expiration time - Accept and deny invite commands - Member kick and leave commands - Role-based clan permissions - Configurable owner and member roles - Clan levels and experience - Member limits based on clan level - PlaceholderAPI support - SQLite and MySQL storage - Configurable clan name validation - Blocked clan names list - PlaceholderAPI-based creation conditions - Visual clan name creator GUI - Configurable fonts, colors and text styles - Addon loader - Developer API and clan events - Hex color support - Configurable actions --- ## Clans Players can create clans, invite other players, accept or deny invites, leave their clan, kick members and delete the clan when they have the required access. Clan names can be controlled with minimum length, maximum length, regex validation, blocked names and custom creation conditions. --- ## Invites hClans includes a built-in invite system. Invites expire after a configurable time. ```yaml settings: clans: inviteExpirationSeconds: 300 ``` Invite messages can include clickable text through the action system. --- ## Roles hClans includes a role-based permission system. Default roles: ```text owner member ``` Default member permission: ```text hclans.leave ``` Built-in clan permissions: ```text hclans.invite hclans.kick hclans.delete hclans.leave hclans.request.accept hclans.request.deny hclans.request.expire ``` Addons can register additional clan permissions through the hClans API. --- ## Levels Clan levels are configurable. Each level can define required experience and a maximum member limit. ```yaml settings: levels: lvl: 1: exp: 0 maxMembers: 10 2: exp: 300 maxMembers: 15 3: exp: 500 maxMembers: 25 ``` Staff can manage clan level and experience through admin commands. --- ## Creator GUI hClans includes an optional GUI for visual clan name customization. Configuration file: ```text plugins/hClans/clanCreator.yml ``` The creator GUI supports: - font selection - small caps style - bold toggle - italic toggle - underline toggle - three configurable color points - name preview item - confirm and cancel buttons - custom decorative items - custom heads through basehead materials --- ## Conditions Clan creation can be restricted through PlaceholderAPI-based conditions. ```yaml createConditions: 1: check: '%player_level%' type: '>=' value: 30 actions: - ' {prefix}&cYou do not meet the requirements to create a clan.' ``` --- ## Storage Supported storage modes: ```text SQLite MySQL ``` SQLite is used by default. MySQL can be enabled in `config.yml`. The plugin also supports table prefixes so the core plugin and addons can use the same database safely. --- ## Addons hClans can load addons from: ```text plugins/hClans/addons/ ``` Addons can extend the clan system with extra commands, menus, storage modules, events and integrations. The core API provides access to: - clan permissions - custom roles - custom subcommands - custom placeholders - database API - clan events - skull utilities --- ## PAPI PlaceholderAPI identifier: ```text hclans ``` Available placeholders: ```text %hclans_has_clan% %hclans_invite_clan% %hclans_clan% %hclans_name% %hclans_owner% %hclans_owner_uuid% %hclans_members% %hclans_member_count% %hclans_is_owner% %hclans_roles% %hclans_role_ids% %hclans_role_count% ``` Custom placeholders can also be registered through the API or addons. --- ## Actions hClans supports configurable actions. Examples: ```text ``` Actions can be used in messages, invite notifications, creation conditions, creator GUI items and result handling. --- ## Commands | Command | Description | |---|---| | `/clan` | Shows clan help | | `/clan create <name>` | Creates a clan | | `/clan delete` | Starts clan deletion confirmation | | `/clan delete <name>` | Confirms clan deletion | | `/clan invite <player>` | Invites a player | | `/clan kick <player>` | Kicks a member | | `/clan accept <clan>` | Accepts an invite | | `/clan deny <clan>` | Denies an invite | | `/clan leave` | Leaves the clan | | `/hclans reload` | Reloads the plugin configuration | | `/hclans levels <clan> <action> <amount>` | Manages clan level or experience | Level actions: ```text addlvl addexp removelvl removeexp setlevel setexp ``` --- ## Permissions Bukkit permissions: ```text hclans.use hclans.reload hclans.levels ``` Clan role permissions: ```text hclans.invite hclans.

hClans is a configurable clan system for Minecraft servers.

It provides clan creation, invites, member management, role-based permissions, clan levels, experience, PlaceholderAPI placeholders, SQLite/MySQL storage and an addon system for extending the core plugin.

## Features

  • Clan creation and deletion
  • Clan invites with expiration time
  • Accept and deny invite commands
  • Member kick and leave commands
  • Role-based clan permissions
  • Configurable owner and member roles
  • Clan levels and experience
  • Member limits based on clan level
  • PlaceholderAPI support
  • SQLite and MySQL storage
  • Configurable clan name validation
  • Blocked clan names list
  • PlaceholderAPI-based creation conditions
  • Visual clan name creator GUI
  • Configurable fonts, colors and text styles
  • Addon loader
  • Developer API and clan events
  • Hex color support
  • Configurable actions

Players can create clans, invite other players, accept or deny invites, leave their clan, kick members and delete the clan when they have the required access.

Clan names can be controlled with minimum length, maximum length, regex validation, blocked names and custom creation conditions.

hClans includes a built-in invite system.

Invites expire after a configurable time.

```yaml settings: clans: inviteExpirationSeconds: 300 ```

Invite messages can include clickable text through the action system.

hClans includes a role-based permission system.

Default roles:

```text owner member ```

Default member permission:

```text hclans.leave ```

Built-in clan permissions:

```text hclans.invite hclans.kick hclans.delete hclans.leave hclans.request.accept hclans.request.deny hclans.request.expire ```

Addons can register additional clan permissions through the hClans API.

Clan levels are configurable.

Each level can define required experience and a maximum member limit.

```yaml settings: levels: lvl: 1: exp: 0 maxMembers: 10 2: exp: 300 maxMembers: 15 3: exp: 500 maxMembers: 25 ```

Staff can manage clan level and experience through admin commands.

## Creator GUI

hClans includes an optional GUI for visual clan name customization.

Configuration file:

```text plugins/hClans/clanCreator.yml ```

The creator GUI supports:

  • font selection
  • small caps style
  • bold toggle
  • italic toggle
  • underline toggle
  • three configurable color points
  • name preview item
  • confirm and cancel buttons
  • custom decorative items
  • custom heads through basehead materials

## Conditions

Clan creation can be restricted through PlaceholderAPI-based conditions.

```yaml createConditions: 1: check: '%player_level%' type: '>=' value: 30 actions: - ' {prefix}&cYou do not meet the requirements to create a clan.' ```

Supported storage modes:

```text SQLite MySQL ```

SQLite is used by default. MySQL can be enabled in `config.yml`.

The plugin also supports table prefixes so the core plugin and addons can use the same database safely.

hClans can load addons from:

```text plugins/hClans/addons/ ```

Addons can extend the clan system with extra commands, menus, storage modules, events and integrations.

The core API provides access to:

  • clan permissions
  • custom roles
  • custom subcommands
  • custom placeholders
  • database API
  • clan events
  • skull utilities

PlaceholderAPI identifier:

```text hclans ```

Available placeholders:

```text %hclans_has_clan% %hclans_invite_clan% %hclans_clan% %hclans_name% %hclans_owner% %hclans_owner_uuid% %hclans_members% %hclans_member_count% %hclans_is_owner% %hclans_roles% %hclans_role_ids% %hclans_role_count% ```

Custom placeholders can also be registered through the API or addons.

hClans supports configurable actions.

Actions can be used in messages, invite notifications, creation conditions, creator GUI items and result handling.

## Commands

| Command | Description | |---|---| | `/clan` | Shows clan help | | `/clan create ` | Creates a clan | | `/clan delete` | Starts clan deletion confirmation | | `/clan delete ` | Confirms clan deletion | | `/clan invite ` | Invites a player | | `/clan kick ` | Kicks a member | | `/clan accept ` | Accepts an invite | | `/clan deny ` | Denies an invite | | `/clan leave` | Leaves the clan | | `/hclans reload` | Reloads the plugin configuration | | `/hclans levels ` | Manages clan level or experience |

Level actions:

```text addlvl addexp removelvl removeexp setlevel setexp ```

## Permissions

Bukkit permissions:

```text hclans.use hclans.reload hclans.levels ```

Clan role permissions:

```text hclans.invite hclans.

🤖 AI-enhanced — based on mod data

📊 Mod Details

Game
Minecraft Plugins
Author
He3HaukaX
Version
v1.7
Downloads
179
Endorsements
0
Category
adventure
Created
6/19/2026
Updated
8/4/2026
Game Versions
1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4
Tags
adventure, equipment, game-mechanics

🔧 How to Install Minecraft Plugins Mods

Download from Modrinth. Use Prism Launcher or drop into your mods folder.

📖 Full step-by-step install guide for Minecraft Plugins →

Visit the official mod page for specific installation instructions for this mod.

🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.

❓ Frequently Asked Questions

Which Minecraft Plugins versions does hClans support?

The author lists 1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4, 1.21.5. Other versions may work but are untested by the author.

What is the latest version of hClans?

Version v1.7, published 2026-08-04 with 179 downloads recorded at the source.

Keep browsing — more Minecraft Plugins mods await

📋 All Minecraft Plugins Mods 🏆 Top 25 📂 More adventure 👤 More by He3HaukaX 🔎 Similar Mods 🌐 Best adventure (All Games) 🔀 Check Compatibility ⚖️ Compare Mods 🆕 New Mods