Minecraft AutoWhitelist mod 2026 download
logo
minecraft mod AutoWhitelist

AutoWhitelist

Game Version: 1.18.2
Total Downloads: 19,541
Updated: May 4, 2022
Created: Jun 12, 2012
Download AutoWhitelistDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
v3.5-38 release 32.25 KB May 4, 2022 1.18.2 12 download AutoWhitelist v3.5-38 releaseDownload
v3.5-36 release 31.75 KB Aug 24, 2021 1.17 585 download AutoWhitelist v3.5-36 releaseDownload
v3.5.-32 release 31.73 KB Sep 12, 2016 1.14 2,251 download AutoWhitelist v3.5.-32 releaseDownload
v3.5-26 release 31.66 KB May 7, 2015 1.8 3,498 download AutoWhitelist v3.5-26 releaseDownload
v3.5-24 release 31.69 KB Feb 20, 2015 CB 1.7.9-R0.2 1,096 download AutoWhitelist v3.5-24 releaseDownload
v3.5-22 release 30.58 KB Feb 14, 2015 CB 1.7.9-R0.2 231 download AutoWhitelist v3.5-22 releaseDownload
v3.5-20 release 30.41 KB Jan 26, 2015 1.8 407 download AutoWhitelist v3.5-20 releaseDownload
v3.5-17 release 28.81 KB Sep 2, 2014 CB 1.7.9-R0.2 1,717 download AutoWhitelist v3.5-17 releaseDownload
v3.5-15 release 28.50 KB Aug 27, 2014 CB 1.7.9-R0.2 1,365 download AutoWhitelist v3.5-15 releaseDownload
v3.4 release 105.60 KB May 16, 2014 CB 1.7.9-R0.1 1,118 download AutoWhitelist v3.4 releaseDownload
v3.3 release 105.48 KB Mar 28, 2013 1.6.2 3,087 download AutoWhitelist v3.3 releaseDownload
v3.2 release 104.43 KB Oct 11, 2012 CB 1.4.7-R1.0 1,620 download AutoWhitelist v3.2 releaseDownload
v2.7b release 27.25 KB Jun 15, 2012 CB 1.2.5-R4.0 1,689 download AutoWhitelist v2.7b releaseDownload
v2.7a release 25.02 KB Jun 12, 2012 CB 1.2.5-R4.0 865 download AutoWhitelist v2.7a releaseDownload

Screenshots

Description

Share this:

About AutoWhitelist

This is a continuation of the Whitelist plugin originally written by Silencium20. This plugin will automatically reload your whitelist when players are added to the whitelist file. This plugin will connect to Mojang servers for UUID lookups.

 

AutoWhitelist

 

Features

  • AutoWhitelist is automatically reloaded when changed outside of Minecraft (e.g. with a text editor)
  • AutoWhitelist supports console commands
  • SQL support
  • Support for every SQL database that has a JDBC implementation available
  • User-defined table and database layouts supported
  • Ampersand color codes in the kick message. (&4 = red etc…)
  • UUID support.

How to install

  • In your server.properties file set whitelist to false.
  • Drop the jar file in your plugins directory and restart your server.

Commands

Commands: These commands can be used by Ops ingame or in the server console. When used with the server console don't type '/' before the command.

  • /whitelist help – Shows the help 😉
  • /whitelist reload – Reloads the whitelist and it's settings
  • /whitelist add [playername(s)] – Adds a player to the whitelist)
  • /whitelist info [playername] – Display information about a player
  • /whitelist remove [playername(s)] – Removes a player from the whitelist)
  • /whitelist on|off – Activates/deactivates the whitelist
  • /whitelist list – Lists all whitelisted players (from txt file)
  • /whitelist dblist – Lists all whitelisted players (from DB)
  • /whitelist dbdump – Dumps users from database to whitelist.txt file

Permissions

  • whitelist.admin – Gives players access to any of the /whitelist commands.
  • whitelist.[command] – Gives players access to specific commands.

Basic Configuration

See config.yml

SQL Configuration

To support as many different database configurations as possible, Whitelist sets flexibility over simplicity. This way virtually every existing database can be used as a base for authentification.

Table Creation

The plugin will not automatically create tables for you. Below are a couple examples to get you started.

If you want to use UUIDs you can do something like this.

CREATE TABLE IF NOT EXISTS `tbl_users` (
  `name` varchar(256) NOT NULL,
  `uuid` varchar(256) NOT NULL,
  `oper` varchar(256) NOT NULL,
  `time` varchar(256) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

Or more basic without UUIDs.

CREATE TABLE IF NOT EXISTS `tbl_users` (
  `name` varchar(256) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

Dependencies

If you want to use MySQL, you might need the MySQL Connector/J. It can be found here.

Source

https://github.com/cnaude/Whitelist

Change Log

  • v3.5-32
    • Add DB reconnect logic.
    • Update for MC 1.10.2.
    • Info command should always respond.
  • v3.5-26 – May 7, 2015
    • Update for MC 1.8.3.
  • v3.5-24 – February 20, 2015
    • Don't allow null uuid when adding players.
    • Automatically remove players with null uuid from json.
    • NPE fixes.
  • v3.5-22 – February 14, 2015
    • Add support for offline mode.
  • v3.5-20 – January 26, 2014
    • Add support for UUID in SQL mode.
  • v3.5-17 – September 1, 2014
    • Fix player add message.
    • Fix remove command.
    • Make commands more verbose.
  • v3.5-15 – August 27, 2014
    • Add UUID support (whitelist.json)
  • v3.4 – May 15, 2014
    • Add %NAME% token for kick message.
  • v3.3 – March 27, 2013
    • Add dbdump command.
  • v3.2 – October 11, 2012
    • Changed from whitelist.properties to config.yml
    • Fixed the list command
    • Added dblist command
  • v2.7b – June 15, 2012
    • Added color code support. Use ampersand color codes in the kick message.
  • v2.7a – June 12, 2012
    • Initial version.
    • Added support for CB 1.2.3-R0.1 and higher.

Comments

Add a comment