Ranks v2.0.5

Details

  • Filename
    Ranks.jar
  • Uploaded by
  • Uploaded
    Jan 17, 2014
  • Size
    30.02 KB
  • Downloads
    428
  • MD5
    d39e653198c61db2e88298ca0a01bab4

Supported Bukkit Versions

  • CB 1.7.2-R0.2

Changelog

I have found some bugs in the 2.0.5 Release, that could stop the plugin from totally working! To all the people, who tried it out yet: You have to delete all mysql-tables created by the plugin, the new version 2.1.0 will recreate them and solve these issues!

If you want to fix your MySQL-databases, please use this SQL-snippet on your database and after that restart the server!

Drop table IF EXISTS Ranks_cache;
CREATE TABLE `Ranks_cache` (
	`Username` VARCHAR(32) NOT NULL COLLATE 'utf8_unicode_ci',
	`Material` VARCHAR(50) NOT NULL COLLATE 'utf8_unicode_ci',
	`break` INT(10) NOT NULL DEFAULT '0',
	`place` INT(10) NOT NULL DEFAULT '0',
	PRIMARY KEY (`Username`, `Material`)
);
Drop table IF EXISTS Ranks_users;
CREATE TABLE `Ranks_users` (
	`Username` VARCHAR(32) NOT NULL COLLATE 'utf8_unicode_ci',
	`Score` INT(10) NOT NULL DEFAULT '0',
	`break` INT(10) NOT NULL DEFAULT '0',
	`place` INT(10) NOT NULL DEFAULT '0',
	PRIMARY KEY (`Username`)
);

Remember, i use Connections to my website in this build!

Changelog:


  • v2.0.5:
    • now counting experience gained
    • now counting distance traveled
  • v2.0.4:
    • now counting online-time
  • v2.0.3:
    • all features implemented!
    • Signs are working!
    • Commands are working!
    • Restrictions based on exp removed for now!
    • Removed updater and implemented Gravity's updater!
    • The plugin will now auto-update on new versions!
  • v2.0.1: