PlayerAccessList

โญ โ€” (0 endorsements) ๐Ÿ“ฅ 68 downloads ๐Ÿ“Œ v3.0 ๐Ÿ“… 2/10/2026
๐ŸŸก Updated this year

By SuperCHIROK1 ยท management

โฌ‡ Download Mod Source: Modrinth โ†— ๐Ÿ“… Updated: 2/8/2026 ๐Ÿ“… Created: 2/10/2026

๐Ÿ” Analysis

  • ๐Ÿ† #65 of 333 management mods in this game by downloads

๐Ÿ“‹ About This Mod

# ๐Ÿ›ก๏ธ PlayerAccessList (PAL) **PlayerAccessList** is a powerful and flexible access management system for your Minecraft server, providing whitelist and blacklist functionality. !(https://img.shields.io/bstats/servers/29094) !(https://img.shields.io/bstats/players/29094) !(https://img.shields.io/badge/Software-Paper_1.16%2B-orange?style=flat) !(https://img.shields.io/modrinth/dt/playeraccesslist) !(https://img.shields.io/github/license/SuperCHIROK1/PlayerAccessList) !(https://cdn.modrinth.com/data/cached_images/20e4b322b471de21df7c4f78e4ea3de1ebaf80da.png) ## โœจ Features * **MySQL support** โ€” The plugin can connect to external databases. * **MiniMessage support** โ€” Uses the modern formatting system from Adventure API. * **Asynchronous checks** โ€” Most access checks are performed asynchronously. * **Migration** โ€” Allows copying data from the vanilla whitelist into the plugin database. * **Logging** โ€” Ability to log all actions to console or moderator chat. * **Overrides system** โ€” Configure custom access scenarios using Overrides. * **Multi-language support** โ€” Several localization files are built in. (https://dsc.gg/bytepl) * (https://github.com/SuperCHIROK1/PlayerAccessList) ## ๐Ÿš€ Commands | Command | Aliases | Description | Permission | |-------|--------|-------------|------------| | `/whitelist` | `/wl, /whl` | Manage the whitelist | `pal.whitelist` | | `/blacklist` | `/bl, /bll` | Manage the blacklist | `pal.blacklist` | | `/pal` | `/playeraccess, /playeraccesslist` | Main plugin command (reload, migration) | `pal.admin` | ## ๐Ÿ“ˆ bStats Analytics (https://bstats.org/plugin/bukkit/PlayerAccessList/29094) !(https://bstats.org/signatures/bukkit/PlayerAccessList.svg) <details> <summary>Configurations</summary> Main configuration: ```yaml # โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–„ โ–ˆโ–ˆ โ–„โ–ˆโ–ˆโ–ˆโ–ˆโ–„ โ–„โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–„โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆ โ–„โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ # โ–ˆโ–ˆโ–„โ–„โ–ˆโ–€ โ–ˆโ–ˆ โ–ˆโ–ˆโ–„โ–„โ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆ โ–€โ–€โ–€โ–„โ–„โ–„ โ–ˆโ–ˆ # โ–ˆโ–ˆ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆ โ–€โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–€โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–€ โ–ˆโ–ˆ # # ยป Support: https://dsc.gg/bytepl # # โš  Found a bug? Please contact support before leaving a low rating. # We value your trust and will help you quickly! # โค Like the plugin? Leave a review, it's the best motivation. # Plugin prefix in messages. (placeholders: %prefix%) prefix: '&#6EADFF&lPAL &8ยป&7' # Color code and text formatting mode. # All methods support HEX colors. # # Options: # ยป LEGACY (Classic: &6, &#aabbcc) # ยป LEGACY_UPDATED (Extended: &6, &#aabbcc, <#aabbcc>) # ยป MINIMESSAGE (Tags: <red>, <gradient>) serializer: "legacy" # Plugin localization (the corresponding file must be in the /lang/ folder) # # Available localizations: # ยป ru (Russian) # ยป en (English) # # Help us improve! # If you've made a high-quality translation into another language, # suggest it on our Discord server: https://dsc.gg/bytepl language: en # Player data storage settings database: # Database type. # It is recommended to change this while the server is offline. # # Types: # sqlite - local file (recommended for small servers) # mysql - remote DB (recommended for server networks/BungeeCord) type: "sqlite" # SQLite file name/path (will be created in the plugin folder) sqlite_path: 'data.db' # MySQL connection parameters (used if type: mysql) mysql: host: "0.0.0.0" # Database IP address port: 3306 # MySQL port username: "pal_user" # Database username password: "password" # User password database: "pal_db" # Created database name # Connection parameters string. # (if you are not sure what this is, we recommend leaving it as is) args: "?useSSL=false&autoReconnect=true&characterEncoding=utf8" # Synchronization section for multiple servers (MySQL only) polling: # Should the automatic cache update be enabled? # If you have multiple servers connected to the same DB, # this allows them to see changes made on other servers. enabled: false # Update check interval (in seconds). # Lower values mean players can join faster after being added, # but the plugin will "query" the database more frequently. # Recommended: 30-60 seconds. delay: 60 ``` access.yml: ```yaml # โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–„ โ–ˆโ–ˆ โ–„โ–ˆโ–ˆโ–ˆโ–ˆโ–„ โ–„โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–„โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆ โ–„โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ # โ–ˆโ–ˆโ–„โ–„โ–ˆโ–€ โ–ˆโ–ˆ โ–ˆโ–ˆโ–„โ–„โ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆ โ–€โ–€โ–€โ–„โ–„โ–„ โ–ˆโ–ˆ # โ–ˆโ–ˆ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆ โ–€โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–€โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–€ โ–ˆโ–ˆ # # ยป Support: https://dsc.gg/bytepl # # โš  Found a bug? Please contact support before leaving a low rating. # We value your trust and will help you quickly! # โค Like the plugin? Leave a review, it's the best motivation. whitelist: # Enable whitelist? enabled: false # Kick message shown to the player. kick_message: - '&cYou are not whitelisted on this server!' -

# ๐Ÿ›ก๏ธ PlayerAccessList (PAL) PlayerAccessList is a powerful and flexible access management system for your Minecraft server, providing whitelist and blacklist functionality.

!(https://img.shields.io/bstats/servers/29094) !(https://img.shields.io/bstats/players/29094) !(https://img.shields.io/badge/Software-Paper_1. 16%2B-orange?style=flat) !(https://img.shields.io/modrinth/dt/playeraccesslist) !(https://img.shields.io/github/license/SuperCHIROK1/PlayerAccessList)

!(https://cdn.modrinth.com/data/cached_images/20e4b322b471de21df7c4f78e4ea3de1ebaf80da.png)

## โœจ Features MySQL support โ€” The plugin can connect to external databases. MiniMessage support โ€” Uses the modern formatting system from Adventure API. Asynchronous checks โ€” Most access checks are performed asynchronously. Migration โ€” Allows copying data from the vanilla whitelist into the plugin database. Logging โ€” Ability to log all actions to console or moderator chat. Overrides system โ€” Configure custom access scenarios using Overrides. Multi-language support โ€” Several localization files are built in. (https://dsc.gg/bytepl) [Developer API โ€” Go to GitHub](https://github.com/SuperCHIROK1/PlayerAccessList)

## ๐Ÿš€ Commands | Command | Aliases | Description | Permission | |-------|--------|-------------|------------| | `/whitelist` | `/wl, /whl` | Manage the whitelist | `pal.whitelist` | | `/blacklist` | `/bl, /bll` | Manage the blacklist | `pal.blacklist` | | `/pal` | `/playeraccess, /playeraccesslist` | Main plugin command (reload, migration) | `pal.admin` |

## ๐Ÿ“ˆ bStats Analytics (https://bstats.org/plugin/bukkit/PlayerAccessList/29094)

!(https://bstats.org/signatures/bukkit/PlayerAccessList.svg)

Configurations Main configuration: ```yaml # โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–„ โ–ˆโ–ˆ โ–„โ–ˆโ–ˆโ–ˆโ–ˆโ–„ โ–„โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–„โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆ โ–„โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ # โ–ˆโ–ˆโ–„โ–„โ–ˆโ–€ โ–ˆโ–ˆ โ–ˆโ–ˆโ–„โ–„โ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆ โ–€โ–€โ–€โ–„โ–„โ–„ โ–ˆโ–ˆ # โ–ˆโ–ˆ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆ โ–€โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–€โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–€ โ–ˆโ–ˆ # # ยป Support: https://dsc.gg/bytepl # # โš  Found a bug? Please contact support before leaving a low rating. # We value your trust and will help you quickly! # โค Like the plugin? Leave a review, it's the best motivation.

# Plugin prefix in messages. (placeholders: %prefix%) prefix: 'EADFF&lPAL &8ยป&7'

# Color code and text formatting mode. # All methods support HEX colors. # # Options: # ยป LEGACY (Classic: &6, &#aabbcc) # ยป LEGACY_UPDATED (Extended: &6, &#aabbcc, <#aabbcc>) # ยป MINIMESSAGE (Tags: , ) serializer: "legacy"

# Plugin localization (the corresponding file must be in the /lang/ folder) # # Available localizations: # ยป ru (Russian) # ยป en (English) # # Help us improve! # If you've made a high-quality translation into another language, # suggest it on our Discord server: https://dsc.gg/bytepl language: en

# Player data storage settings database: # Database type. # It is recommended to change this while the server is offline. # # Types: # sqlite - local file (recommended for small servers) # mysql - remote DB (recommended for server networks/BungeeCord) type: "sqlite"

# SQLite file name/path (will be created in the plugin folder) sqlite_path: 'data.db'

# MySQL connection parameters (used if type: mysql) mysql: host: "0. 0. 0. 0" # Database IP address port: 3306 # MySQL port username: "pal_user" # Database username password: "password" # User password database: "pal_db" # Created database name

# Connection parameters string. # (if you are not sure what this is, we recommend leaving it as is) args: "?useSSL=false&autoReconnect=true&characterEncoding=utf8"

# Synchronization section for multiple servers (MySQL only) polling: # Should the automatic cache update be enabled? # If you have multiple servers connected to the same DB, # this allows them to see changes made on other servers. enabled: false

# Update check interval (in seconds). # Lower values mean players can join faster after being added, # but the plugin will "query" the database more frequently. # Recommended: 30-60 seconds. delay: 60 ```

access.yml:

```yaml # โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–„ โ–ˆโ–ˆ โ–„โ–ˆโ–ˆโ–ˆโ–ˆโ–„ โ–„โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–„โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆ โ–„โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ # โ–ˆโ–ˆโ–„โ–„โ–ˆโ–€ โ–ˆโ–ˆ โ–ˆโ–ˆโ–„โ–„โ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆ โ–€โ–€โ–€โ–„โ–„โ–„ โ–ˆโ–ˆ # โ–ˆโ–ˆ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆ โ–€โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–€โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–ˆ โ–ˆโ–ˆ โ–ˆโ–ˆโ–ˆโ–ˆโ–ˆโ–€ โ–ˆโ–ˆ # # ยป Support: https://dsc.gg/bytepl # # โš  Found a bug? Please contact support before leaving a low rating. # We value your trust and will help you quickly! # โค Like the plugin? Leave a review, it's the best motivation.

whitelist: # Enable whitelist? enabled: false # Kick message shown to the player. kick_message: - '&cYou are not whitelisted on this server!' -

๐Ÿค– AI-enhanced โ€” based on mod data

๐Ÿ“Š Mod Details

Game
Minecraft Plugins
Author
SuperCHIROK1
Version
3.0
Downloads
68
Endorsements
0
Category
management
Created
2/10/2026
Updated
2/8/2026
Game Versions
1.16, 1.16.1, 1.16.2, 1.16.3, 1.16.4
Tags
management, utility

๐Ÿ”ง 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 PlayerAccessList support?

The author lists 1.16, 1.16.1, 1.16.2, 1.16.3, 1.16.4, 1.16.5. Other versions may work but are untested by the author.

What is the latest version of PlayerAccessList?

Version 3.0, published 2026-02-08 with 68 downloads recorded at the source.

Keep browsing โ€” more Minecraft Plugins mods await

๐Ÿ“‹ All Minecraft Plugins Mods ๐Ÿ† Top 25 ๐Ÿ“‚ More management ๐Ÿ‘ค More by SuperCHIROK1 ๐Ÿ”Ž Similar Mods ๐ŸŒ Best management (All Games) ๐Ÿ”€ Check Compatibility โš–๏ธ Compare Mods ๐Ÿ†• New Mods