ClansReborn  » 1.7 - 1.21.10 icon

ClansReborn » 1.7 - 1.21.10 -----

The lightweight, modern, and fully configurable Clans plugin that works for ALL Minecraft versions.




ClansReborn is the ultra lightweight, simple to use,
configure, and understand Clans plugin that works for
practically every single Minecraft version that is available.

Have a suggestion?
Join the Resource Discord, create a ticket,
and let me know your ideas! (y)

[​IMG]

Commands »

[​IMG]

Permissions »
Permission Description
Code (Text):
clans.use
Allows using the /clan base command.
Code (Text):
clans.admin
Access to admin commands such as /clan reload and force-administration actions.
Code (Text):
clans.command.create
Allows creating a clan using /clan create.
Code (Text):
clans.command.invite
Allows inviting a player to your clan using /clan invite.
Code (Text):
clans.command.accept
Allows accepting a clan invite using /clan accept.
Code (Text):
clans.command.deny
Allows denying a clan invite using /clan deny.
Code (Text):
clans.command.kick
Allows kicking a member from your clan using /clan kick.
Code (Text):
clans.command.leave
Allows leaving your clan using /clan leave.
Code (Text):
clans.command.disband
Allows disbanding your clan using /clan disband.
Code (Text):
clans.command.base
Allows teleporting to your clan base using /clan base.
Code (Text):
clans.command.setbase
Allows setting your clan's base using /clan setbase.
Code (Text):
clans.command.list
Allows viewing clan members using /clan list.
Code (Text):
clans.command.stats
Allows viewing stats with /clan stats.
Code (Text):
clans.command.top
Allows viewing the top clans using /clan top.
Code (Text):
clans.command.chat
Allows toggling clan chat using /clan chat.
Code (Text):
clans.command.reload
Allows reloading all plugin configuration using /clan reload.
Code (Text):
clans.bypass.setbasecooldown
Bypasses the configurable cooldown for /clan setbase.

PlaceholderAPI »​

Placeholder Description
Code (Text):
%clans_tag%
Shows the player's clan tag without any colors or decorators. Empty if the player is not in a clan.
Code (Text):
%clans_colored_tag%
Shows the clan tag colored based on the clan's total kills using the
Code (Text):
clans.colors.ranges
config. Empty if the player is not in a clan.
Code (Text):
%clans_tag_progress%
Shows the clan tag with a decorator (e.g.
Code (Text):
+
,
Code (Text):
++
,
Code (Text):
) based on the clan's total kills using
Code (Text):
clans.tag-decorators.ranges
. Empty if the player is not in a clan.
Code (Text):
%clans_colored_tag_progress%
Shows the clan tag with both kill-based color and decorator applied (color from
Code (Text):
clans.colors.ranges
, decorator from
Code (Text):
clans.tag-decorators.ranges
). Empty if the player is not in a clan.

Configurable files »​

Code (YAML):
#######################################################################
#                                                                     #
#                           CLANS  REBORN                             #
#                           Configuration                             #
#                                                                     #
#   Storage, clan settings, chat, colors, base & stats options.       #
#                                                                     #
#######################################################################


##################################################
#                   STORAGE                      #
##################################################
storage
:
  # Storage type:
  # - "yaml"  = Flat-file storage (clans.yml)
  # - "mysql" = MySQL database storage
  type
: "yaml"

  mysql
:
    host
: "localhost"
    port
: 3306
    database
: "clans"
    username
: "root"
    password
: "password"

    # Whether to use SSL for the MySQL connection
    use-ssl
: false

    # Table name prefix used when creating tables
    table-prefix
: "clans_"


##################################################
#                    CLANS                       #
##################################################
clans
:
  # Minimum and maximum length for clan names
  min-name-length
: 3
  max-name-length
: 16
 
  allow-promotions-and-menu
: true
  # With this enabled, the promote, demote,
  # and menu sub-commands will work.

  # Allow special characters in clan names
  # If false, only A-Z, a-z, 0-9 and _ are allowed.
  allow-special-characters
: false
 
  # Blacklisted clan names (exact matches, case-insensitive).
  # Example: "admin" will block "Admin", "ADMIN", etc.
  name-blacklist
:
   - "admin"
    - "owner"
    - "staff"

  # Blacklisted words that cannot appear anywhere in the clan name.
  # Example: "test" will block "MyTestClan", "TeSting", etc (case-insensitive).
  name-blacklist-contains
:
   - "fuck"
    - "shit"
    - "bitch"

  # Maximum number of members allowed in a clan
  max-members
: 20

  # If true, clan members can damage each other.
  # If false, friendly fire inside the same clan is disabled.
  allow-friendly-fire
: false


  ################################################
  #                    CHAT                      #
  ################################################
  chat
:
    # Enable or disable clan chat feature entirely
    enabled
: true

    # Chat format for clan chat messages
    # Placeholders:
    #   {clan}    - clan tag
    #   {player}  - player name
    #   {message} - chat message
    format
: "&8(&bClan&8) &7{clan} &8| &a{player}&7: &f{message}"


  ################################################
  #                   COLORS                     #
  ################################################
  colors
:
    # Kill ranges mapped to colors.
    # Format: "min-max:color-code"
    #
    # Examples:
    #   "0-99:&7"     -> 0 to 99 kills  = &7 (gray)
    #   "100-299:&a"  -> 100 to 299    = &a (light green)
    #   "500:&c"      -> 500 and above = &c (red)
    ranges
:
     - "0-99:&7"
      - "100-299:&a"
      - "300-499:&b"
      - "500:&c"


  ################################################
  #                    TAGS                      #
  ################################################
  tag-decorators
:
    # "min-max:prefix"
    ranges
:
     - "0-99:"
      - "100-199:+"
      - "200-299:++"
      - "300:&e★"   # 300+ kills gets a fancy star

  ################################################
  #                    BASE                      #
  ################################################
  base
:
    # Delay before teleporting to clan base in seconds.
    # Set to 0 to teleport instantly.
    teleport-delay-seconds
: 5

    # If true, moving before the delay finishes cancels the teleport.
    cancel-on-move
: true

    # Cooldown (in seconds) between uses of /clan setbase
    # for players WITHOUT the bypass permission.
    setbase-cooldown-seconds
: 60

    # Permission that bypasses the /clan setbase cooldown.
    setbase-cooldown-bypass-permission
: "clans.bypass.setbasecooldown"


  ################################################
  #                    STATS                     #
  ################################################
  stats
:
    # Maximum number of clans to show in /clan top
    top-limit
: 10

Code (YAML):
#######################################################################
#                                                                     #
#                           CLANS REBORN                              #
#                             Messages                                #
#                                                                     #
#   All plugin messages, prefixes, formatting, and placeholders.      #
#                                                                     #
#######################################################################


##################################################
#                    PREFIX                      #
##################################################
# Global prefix added before every message.
prefix
: "&8(&bClans&8) &f"


##################################################
#                 GENERIC MESSAGES               #
##################################################
no-permission
: "You &cdon't &fhave permission to do that."
player-only
: "Only players may use this command."
unknown-subcommand
: "&cUnknown &fsubcommand. Use &e/clan help&f."
invalid-args
: "&cInvalid &farguments. Usage: &e{usage}"


##################################################
#                    CLAN                        #
##################################################
clan
:
  not-in-clan
: "You're &cnot &fin a &bClan&f."
  already-in-clan
: "You're already in a &bClan&f."

  name-too-short
: "&bClan &fname is too short. Min: &e{min}"
  name-too-long
: "&bClan &fname is too long. Max: &e{max}"
  name-invalid
: "&bClan &fname contains invalid characters."
  name-taken
: "That &bClan &fname is already taken."

  created
: "You &acreated &fthe &bClan &e{clan}&f!"
  disbanded
: "&bClan &e{clan} &fhas been &cdisbanded&f."

  left
: "You &cleft &fthe &bClan &e{clan}&f."
  kicked-target
: "You have been &ckicked &ffrom &bClan &e{clan}&f."
  kicked-broadcast
: "&e{player} &fwas kicked from the &bClan &fby &e{actor}&f."

  invite-sent
: "You &ainvited &e{player} &fto your &bClan&f."
  invited
: "You were &ainvited &fto &ajoin &bClan &e{clan}&f. Use &e/clan accept&f."
  no-invite
: "You &cdon't &fhave any pending &bClan &finvites."
  invite-accepted
: "You &ajoined &bClan &e{clan}&f."
  invite-denied
: "You &cdenied &fthe &bClan &finvite from &e{clan}&f."
  full
: "This &bClan &fis &efull&f."

  base-set
: "&bClan &fbase set!"
  base-teleporting
: "Teleporting to &bClan &fbase in &e{seconds} &fseconds. Don't move!"
  base-teleported
: "Teleported to &bClan &fbase."
  base-not-set
: "Your &bClan &fdoesn't have a base set."
  setbase-cooldown
: "You must wait &e{seconds}s &fbefore setting the &bClan &fbase again."
 
  name-blacklisted
: "That &bClan &fname (&e{name}&f) is &cnot allowed&f."
  name-blacklisted-contains
: "Your &bClan &fname contains a blocked word: &e{word}&f."


##################################################
#                     CHAT                       #
##################################################
chat
:
  toggled-on
: "&bClan &fchat &aenabled&f."
  toggled-off
: "&bClan &fchat &cdisabled&f."


##################################################
#                     STATS                      #
##################################################
stats
:
  header
: "&8&m------------------&r &bClan &fStats &8&m------------------"
  line
: "&e{clan} &8| &7Kills: &a{kills}&7, Deaths: &c{deaths}"

  top-header
: "&8&m------------------&r &aTop Clans &8&m------------------"
  top-line
: "&e#{position} {clan} &8| &7Kills: &a{kills}"


##################################################
#                     LIST                       #
##################################################
list
:
  header
: "&8&m------------------&r &bClan &fMembers &8&m------------------"
  member-line
: "&7- {member} &8(&e{rank}&8)"


##################################################
#                    RELOAD                      #
##################################################
reload
:
  done
: "&bClans &fconfiguration &areloaded&f."

Support »
The quickest way to get support for any of my resources
would be to join my Resource Discord.
» https://discord.gg/2vUqykD

Note »
Please DO NOT leave bad reviews for any issues
that you have. Please simply PM me or leave it
in the discussion tab. Thank you. (y)

That and reviews are highly appreciated! :alien:

[​IMG]

My other plugins

[​IMG] [​IMG] [​IMG] [​IMG] [​IMG]
Resource Information
Author:
----------
Total Downloads: 21
First Release: Nov 16, 2025
Last Update: Nov 17, 2025
Category: ---------------
All-Time Rating:
0 ratings
Find more info at discord.gg...
Version -----
Released: --------------------
Downloads: ------
Version Rating:
----------------------
-- ratings