This Spigot Minecraft Plugin will track the playtime of players and show it in chat on command.
Go to file
Chris adc7e7fb47 change LICENSE 2020-12-24 03:34:54 +01:00
.gradle update project files 2017-02-12 14:14:13 +01:00
.idea update project files 2017-02-12 14:14:13 +01:00
META-INF first version 2016-09-12 22:19:11 +02:00
gradle/wrapper moved to gradle for builds 2017-02-07 23:23:04 +01:00
lib add sqlite-jdbc 2017-02-09 00:44:42 +01:00
out/production/PlaytimeReloaded/li/inc/PlaytimeReloaded/DataStore update project 2017-02-08 00:45:34 +01:00
src/main fix the sqllite path 2017-02-23 21:04:10 +01:00
.gitignore update gitignore 2017-02-09 01:14:23 +01:00
CONTRIBUTORS.TXT CONTRIBUTORS 2016-09-15 20:18:10 +02:00
LICENSE.txt change LICENSE 2020-12-24 03:34:54 +01:00
README.md update readme for sqllite 2017-02-24 01:28:31 +01:00
build.gradle add sqlite-jdbc-3.16.1 2017-02-09 01:10:35 +01:00
gradlew moved to gradle for builds 2017-02-07 23:23:04 +01:00
gradlew.bat moved to gradle for builds 2017-02-07 23:23:04 +01:00
settings.gradle moved to gradle for builds 2017-02-07 23:23:04 +01:00

README.md

PlaytimeReloaded

A Minecraft Bukkit/Spigot Plugin to save and display the playtime from all players.

Its save his data to a sqllite or an mysql database. Supports color codes in every messages/commands. Have full UUID support. Works on multiple servers (server networks). Possible to run command then a player reached a playtime.

Command List

  • /playtime [player] Show you own playtime or the playtime from [player]

  • /toptime [numbers] Show the top [numbers] player with the best playtime. Default is 5

Permissions

  • playtime.login The player get a playtime message at every login.

  • playtime.use The player can use the /playtime command.

  • playtime.use.others The player can see the playtime from other players.

  • playtime.top Can see the top 5 playtime list.

Config

mysql:
  host: 127.0.0.1
  port: 3306
  db: test
  user: test
  pass: test
text:
  Date:
    Days: '&aDays&6'
    Hours: '&aHours&6'
    Minutes: '&aMinutes&a'
  Prefix: '&6[&aPlayTime&6] &a'
  YourCurrentPlaytime: Your current playtime is &6%t
  PlayerPlaytimeIs: The playtime from player &6%s&a is &6%t
  PlayerNotFound: '&cThis player dont have play on this server.'
  NoPermission: '&cYou dont have permission to do this!'
  TopPlayerTitel: This is the Top 5 player list.
  TopPlayerEntry: '%r : %s - %t'
timeCommand:
- 8;say &6[&aPlayTime&6] &6%%player%% &ahas &6%%time%% &aminutes &aplayed.