CaptureTheTower v0.4

Details

  • Filename
    CaptureTheTower.jar
  • Uploaded by
  • Uploaded
    Apr 3, 2014
  • Size
    71.52 KB
  • Downloads
    224
  • MD5
    f05fd8ae79463676b33f0fb4d1ca12b6

Supported Bukkit Versions

  • 1.7.4

Changelog

  • Fixed games passed the first loaded one not being able to properly respawn players
  • Removed permission ctt.top
  • Added /ctt stats (name), permission for all stats related commands is now ctt.stats
  • Added config option for which blocks gold blocks can be placed on
  • Improved /ctt top command
  • Added Metrics support

This version is likely one of the last beta versions before full release

The ' in the comments of the config file causes the plugin to crash.

To fix, remove all ' in the comments.

Correct Default config.yml:

# Questions, concerns, ideas, etc, please use the ticket system, comments, or PM me on BukkitDev
#  http://dev.bukkit.org/bukkit-plugins/ctt/

# The ID numbers of blocks that gold blocks can be placed on (can always place on other gold blocks)
gold-block-ids: 49, 7

debug: false
 
# The time limit for games, in seconds
time-limit: 180
 
# The max amount of players in one game
max-players: 10
 
# The message displayed when a player is killed
# Colors can be added by using ^ followed by the standard color code
#  Codes are found here: http://minecraft.gamepedia.com/Formatting_codes
#  Example: ^4 - This will produce Dark Red
# Use %killer% for the killers name, and %victim% for the victims name
kill-message: '%killer% has crucified %victim%'
 
# Stats do not query the database too much, however, the more players, the more queries
# Only when a players stats have been changed will this plugin query the database about it
# Queries are handled on a separate thread, so they will not slow the server unless its running full capacity
# To disable, set this to false
enable-stats: true
 
# SQLite is a local, fast database
# MySQL is on a server, usually remote, and may have a ping lag to it
# For local SQLite, set sql equal to SQLite.
# For remote or local MySQL, set sql equal to MySQL and set the MySQL options accordingly.
sql: SQLite
MySQL:
    hostname: 'localhost'
    port: '3306'
    database: 'CTT'
    username: 'minecraft'
    password: 'notch'

Sorry for the inconvenience