Minecraft SimpleDeathBans mod 2026 download
logo
minecraft mod SimpleDeathBans

SimpleDeathBans

Game Version: 1.7.2
Total Downloads: 11,175
Updated: Jan 19, 2014
Created: Aug 9, 2012
Download SimpleDeathBansDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
SimpleDeathBans v1.5.4 release 12.41 KB Jan 19, 2014 1.7.2 4,693 download SimpleDeathBans SimpleDeathBans v1.5.4 releaseDownload
SimpleDeathBans v1.5.3-beta release 12.41 KB Aug 5, 2013 1.6.2 909 download SimpleDeathBans SimpleDeathBans v1.5.3-beta releaseDownload
SimpleDeathBans v1.5.2 release 12.41 KB Jun 30, 2013 1.5.2 783 download SimpleDeathBans SimpleDeathBans v1.5.2 releaseDownload
SimpleDeathBans v1.5.1 release 12.41 KB May 10, 2013 1.5.1 692 download SimpleDeathBans SimpleDeathBans v1.5.1 releaseDownload
SimpleDeathBans v1.5 release 12.41 KB Mar 5, 2013 1.4.7 760 download SimpleDeathBans SimpleDeathBans v1.5 releaseDownload
SimpleDeathBans v1.4.5 release 10.17 KB Mar 4, 2013 1.4.7 552 download SimpleDeathBans SimpleDeathBans v1.4.5 releaseDownload
SimpleDeathBans v1.4.4 release 10.14 KB Feb 6, 2013 1.4.7 213 download SimpleDeathBans SimpleDeathBans v1.4.4 releaseDownload
SimpleDeathBans v1.4.3 beta 10.14 KB Nov 10, 2012 1.4.2 283 download SimpleDeathBans SimpleDeathBans v1.4.3 betaDownload
SimpleDeathBans v1.4.2 beta 10.14 KB Sep 29, 2012 1.3.2 294 download SimpleDeathBans SimpleDeathBans v1.4.2 betaDownload
SimpleDeathBans v1.4.1 beta 10.14 KB Aug 28, 2012 1.3.2 342 download SimpleDeathBans SimpleDeathBans v1.4.1 betaDownload
SimpleDeathBans v1.4 beta 9.99 KB Aug 27, 2012 1.3.2 280 download SimpleDeathBans SimpleDeathBans v1.4 betaDownload
SimpleDeathBans v1.3.1 beta 9.76 KB Aug 19, 2012 1.3.1 346 download SimpleDeathBans SimpleDeathBans v1.3.1 betaDownload
SimpleDeathBans v1.3 beta 9.69 KB Aug 19, 2012 1.3.1 347 download SimpleDeathBans SimpleDeathBans v1.3 betaDownload
SimpleDeathBans v1.2 beta 8.23 KB Aug 16, 2012 1.3.1 278 download SimpleDeathBans SimpleDeathBans v1.2 betaDownload
SimpleDeathBans v1.1 beta 7.00 KB Aug 13, 2012 1.3.1 198 download SimpleDeathBans SimpleDeathBans v1.1 betaDownload
SimpleDeathBans v1.0 beta 7.59 KB Aug 12, 2012 1.3.1 205 download SimpleDeathBans SimpleDeathBans v1.0 betaDownload

Description

Share this:

SimpleDeathBans

Important Notices
  • Will be updated to use UUIDs instead of usernames soon. Please stand by.
  • Version 1.5 adds support for third party ban conditions. View the 'Config Explanation' section for details.
General Information

On death, players are kicked from server, and ban is saved into a MySQL / SQLite database.
Saved information includes:

  • Player Name
  • Cause of death (if applicable)
  • Entity caused by (if applicable)
  • Date
  • Active (defaults to 1)

When a player joins, their name is tested against active deaths. If they are dead / banned, they are kicked with a custom kick message.

The plugin doesn't actually do anything with saved information (apart from player name and date), however a web application is available if you wish to display death information on a website. The web app, written in PHP, can be found here https://github.com/Echo4190/SDB-Web-App/downloads. This web app is still being updated with various features.

Setup
  • Simply place plugin into plugins folder and reload / restart server.
MySQL Setup

If you want to use a MySQL database instead of an SQLite database, simply change the 'driver' config option from 'sqlite' to 'mysql', and complete the mysql connection details.

Web App Setup

Download the compressed copy of the web app from the following link:
https://github.com/Echo4190/SDB-Web-App/downloads
You must be making use of a MySQL database in order to take advantage of this web app.

  • Uncompress the files into your web directory. Your web server must support PHP with MySQL.
  • Modify the 'config.php' file in the root directory with your MySQL connection details. You can also edit death messages that appear on the page.

You should now be able to view active deaths on the website. This web package is still being updated.

Default Configuration
kickmessage: You're Dead :(
bantime: 0
dobans: true

db:
  driver: sqlite
  mysql:
    username: uname
    password: pword
    host: localhost
    port: 3306
    database: deathbans
  sqlite:
    file: plugins/SimpleDeathBans/simpledeathbans.sqlite

thirdparty:
  Factions:
    enabled: false
    banatpower: -10
Config Explanation
  • Kill message and database are self explanatory.
  • Bantime is in minutes, and specifies how long a user will be unable to join the server for once they are killed. A bantime of 0 is a permanent ban (useful for if you want to reset all bans at the end of the month, by using '/deathbans reset')
  • Dobans sets whether or not to actually ban players. If you simply want to use the plugin in conjunction with the web app for displaying deaths on a website without actually banning players, set this config value to false.

As of v1.5 there is support for third party ban conditions.
In order to utilize the conditional thirdparty banning, 'dobans' must be 'false' to disable the default ban handling (which is obviously ban on any death).
PM me for third party ban conditions for other plugins and I'll look into adding them.

Factions
  • banatpower – When a players power level gets equal to or below this value, they are deathbanned.
Todo List
  • Save players last words to database on death.
Commands
  • /deathbans – List possible commands
  • /deathbans reset – Set all deaths to inactive.
  • /deathbans reload db – Reload deaths from MySQL database
  • /deathbans reload config – Reload config file (which causes a database reload as well)
  • /deathbans revive <player> – Set active deaths matching the player to inactive.
Permissions
  • deathbans.invincible – Don't ban player on death. Helpful if you're admin, and want to.. administrate your server.
  • deathbans.reset – Allow use of the '/deathbans reset' command
  • deathbans.reload.database – Allow use of the '/deathbans reload db' command.
  • deathbans.reload.config – Allow use of the '/deathbans reload config' command.
  • deathbans.revive – Allow use of the '/deathbans revive' command.
External Information
  • Y0urShad0vv has made an instructional youtube video for this plugin, available here: http://www.youtube.com/watch?v=Wka9RT3-T00
Famous Quotes

"I, am not a java god" ~ gv1222

Comments

Add a comment