From 1c6375fde7ee81144554ef1615d97aec7e352bec Mon Sep 17 00:00:00 2001 From: Rsl1122 Date: Sat, 25 Nov 2017 17:15:40 +0200 Subject: [PATCH] Fixed some introduced bugs on Bungee: - Fixed    breaking the variable parsing of WebAPI - Fixed NoClassDefError: SQLiteException on bungee - Fixed NPE on analysis with 0 players - Changed "No Sessions" to use

instead of

- Fixed player graphs not rendering on network page --- .../djrapitops/plan/data/AnalysisData.java | 31 +- .../plan/database/databases/SQLDB.java | 3 +- .../plan/systems/webserver/webapi/WebAPI.java | 6 +- .../plan/utilities/html/HtmlStructure.java | 4 +- .../structure/SessionTabStructureCreator.java | 2 +- Plan/src/main/resources/web/network.html | 10 +- Plan/src/main/resources/web/player.html | 4 +- Plan/src/main/resources/web/server.html | 4 +- Plan/src/main/resources/web/temp.html | 3930 +---------------- 9 files changed, 70 insertions(+), 3924 deletions(-) diff --git a/Plan/src/main/java/com/djrapitops/plan/data/AnalysisData.java b/Plan/src/main/java/com/djrapitops/plan/data/AnalysisData.java index a87125eac..f1ffd0ff7 100644 --- a/Plan/src/main/java/com/djrapitops/plan/data/AnalysisData.java +++ b/Plan/src/main/java/com/djrapitops/plan/data/AnalysisData.java @@ -137,21 +137,26 @@ public class AnalysisData extends RawData { List healthNotes = new ArrayList<>(); TreeMap>> activityData = new TreeMap<>(); - for (PlayerProfile player : players) { - for (long date = now; date >= now - TimeAmount.MONTH.ms() * 2L; date -= TimeAmount.WEEK.ms() * 2L) { - double activityIndex = player.getActivityIndex(date); - String index = FormatUtils.readableActivityIndex(activityIndex)[1]; - - Map> map = activityData.getOrDefault(date, new HashMap<>()); - Set uuids = map.getOrDefault(index, new HashSet<>()); - uuids.add(player.getUuid()); - map.put(index, uuids); - activityData.put(date, map); - } - } - long fourWeeksAgo = now - TimeAmount.WEEK.ms() * 4L; + if (!players.isEmpty()) { + for (PlayerProfile player : players) { + for (long date = now; date >= now - TimeAmount.MONTH.ms() * 2L; date -= TimeAmount.WEEK.ms() * 2L) { + double activityIndex = player.getActivityIndex(date); + String index = FormatUtils.readableActivityIndex(activityIndex)[1]; + + Map> map = activityData.getOrDefault(date, new HashMap<>()); + Set uuids = map.getOrDefault(index, new HashSet<>()); + uuids.add(player.getUuid()); + map.put(index, uuids); + activityData.put(date, map); + } + } + } else { + activityData.put(now, new HashMap<>()); + activityData.put(fourWeeksAgo, new HashMap<>()); + } + Map> activityNow = activityData.get(now); Map> activityFourWAgo = activityData.get(fourWeeksAgo); diff --git a/Plan/src/main/java/com/djrapitops/plan/database/databases/SQLDB.java b/Plan/src/main/java/com/djrapitops/plan/database/databases/SQLDB.java index 7e962661c..100e40ce0 100644 --- a/Plan/src/main/java/com/djrapitops/plan/database/databases/SQLDB.java +++ b/Plan/src/main/java/com/djrapitops/plan/database/databases/SQLDB.java @@ -14,7 +14,6 @@ import main.java.com.djrapitops.plan.database.tables.*; import main.java.com.djrapitops.plan.database.tables.move.Version8TransferTable; import main.java.com.djrapitops.plan.utilities.MiscUtils; import org.apache.commons.dbcp2.BasicDataSource; -import org.sqlite.SQLiteException; import java.sql.Connection; import java.sql.SQLException; @@ -410,7 +409,7 @@ public abstract class SQLDB extends Database { if (!usingMySQL) { connection.commit(); } - } catch (SQLiteException e) { + } catch (SQLException e) { if (!e.getMessage().contains("cannot commit")) { Log.toLog(this.getClass().getName(), e); } diff --git a/Plan/src/main/java/com/djrapitops/plan/systems/webserver/webapi/WebAPI.java b/Plan/src/main/java/com/djrapitops/plan/systems/webserver/webapi/WebAPI.java index da43fff51..17c8ab7c9 100644 --- a/Plan/src/main/java/com/djrapitops/plan/systems/webserver/webapi/WebAPI.java +++ b/Plan/src/main/java/com/djrapitops/plan/systems/webserver/webapi/WebAPI.java @@ -94,7 +94,7 @@ public abstract class WebAPI { connection.setRequestMethod("POST"); connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); - connection.setRequestProperty("charset", "ISO-8859-1"); + connection.setRequestProperty("charset", "UTF-8"); String parameters = parseVariables(); @@ -185,13 +185,13 @@ public abstract class WebAPI { String serverUUID = MiscUtils.getIPlan().getServerUuid().toString(); parameters.append("sender=").append(serverUUID); for (Map.Entry entry : variables.entrySet()) { - parameters.append(";&").append(entry.getKey()).append("=").append(entry.getValue()); + parameters.append(";&variable;").append(entry.getKey()).append("=").append(entry.getValue()); } return parameters.toString(); } public static Map readVariables(String requestBody) { - String[] variables = requestBody.split(";&"); + String[] variables = requestBody.split(";&variable;"); return Arrays.stream(variables) .map(variable -> variable.split("=", 2)) diff --git a/Plan/src/main/java/com/djrapitops/plan/utilities/html/HtmlStructure.java b/Plan/src/main/java/com/djrapitops/plan/utilities/html/HtmlStructure.java index f0ab9ff68..030ea4647 100644 --- a/Plan/src/main/java/com/djrapitops/plan/utilities/html/HtmlStructure.java +++ b/Plan/src/main/java/com/djrapitops/plan/utilities/html/HtmlStructure.java @@ -364,7 +364,7 @@ public class HtmlStructure { "
" + "
" + "
" + - "
" + + "
" + "
" + "
" + "
" + @@ -396,7 +396,7 @@ public class HtmlStructure { "" + ""; + ");})"; } public static String parseOfflineServerContainer(String oldContent) { diff --git a/Plan/src/main/java/com/djrapitops/plan/utilities/html/structure/SessionTabStructureCreator.java b/Plan/src/main/java/com/djrapitops/plan/utilities/html/structure/SessionTabStructureCreator.java index db450d57b..d43fdb123 100644 --- a/Plan/src/main/java/com/djrapitops/plan/utilities/html/structure/SessionTabStructureCreator.java +++ b/Plan/src/main/java/com/djrapitops/plan/utilities/html/structure/SessionTabStructureCreator.java @@ -35,7 +35,7 @@ public class SessionTabStructureCreator { if (Verify.isEmpty(allSessions)) { return new String[]{"
" + - "

No Sessions

" + + "

No Sessions

" + "
", ""}; } diff --git a/Plan/src/main/resources/web/network.html b/Plan/src/main/resources/web/network.html index 243a49ef1..414b9bd48 100644 --- a/Plan/src/main/resources/web/network.html +++ b/Plan/src/main/resources/web/network.html @@ -31,6 +31,9 @@ + + + @@ -288,9 +291,6 @@
- - - @@ -355,9 +355,7 @@ openFunc(slideIndex)(); // Chart draw scripts - /*playersChart('playerChartDay', playersOnlineSeries, 1); - ${serverTabGraphViewFunctions} - /**/ + playersChart('playerChartDay', playersOnlineSeries, 2); function openFunc(i) { return function () { diff --git a/Plan/src/main/resources/web/player.html b/Plan/src/main/resources/web/player.html index 548d406d5..a313bc245 100644 --- a/Plan/src/main/resources/web/player.html +++ b/Plan/src/main/resources/web/player.html @@ -354,7 +354,7 @@
-
+

Seen Nicknames

@@ -380,7 +380,7 @@
-
+

Connection Information

diff --git a/Plan/src/main/resources/web/server.html b/Plan/src/main/resources/web/server.html index 7e7c7bc8d..d067bc474 100644 --- a/Plan/src/main/resources/web/server.html +++ b/Plan/src/main/resources/web/server.html @@ -1097,8 +1097,8 @@ // Chart draw scripts activityPie('activityPie', activitySeries, ${playersTotal}, [${activityPieColors}]); worldPie('worldPie', worldSeries, gmSeries); - playersChart('playerChartDay', playersOnlineSeries, 1); - playersChart('playerChartMonth', playersOnlineSeries, 4); + playersChart('playerChartDay', playersOnlineSeries, 3); + playersChart('playerChartMonth', playersOnlineSeries, 2); performanceChart('performanceGraph', playersOnlineSeries, tpsSeries, cpuSeries, ramSeries, entitySeries, chunkSeries); tpsChart('tpsGraph', tpsSeries, playersOnlineSeries); resourceChart('resourceGraph', cpuSeries, ramSeries, playersOnlineSeries); diff --git a/Plan/src/main/resources/web/temp.html b/Plan/src/main/resources/web/temp.html index 8df803494..4a7fb9c7c 100644 --- a/Plan/src/main/resources/web/temp.html +++ b/Plan/src/main/resources/web/temp.html @@ -1,3900 +1,44 @@ -
-
- -
-
-
-
-
-

Last 50 Sessions

-
+
+
+
+
+
+

First

+
+
+
+
+
+
-
-
- -
-
-
-
-
Nov 21 - 2017, 10:20 -> Nov 21 2017, 10:40 -
-
    -
  • Session EndedNov 21 2017, 10:40
  • -
  • Session Length20m 11s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Nov 21 - 2017, 10:11 -> Nov 21 2017, 10:17 -
-
    -
  • Session EndedNov 21 2017, 10:17
  • -
  • Session Length6m
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Nov 21 - 2017, 10:08 -> Nov 21 2017, 10:11 -
-
    -
  • Session EndedNov 21 2017, 10:11
  • -
  • Session Length2m 29s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Nov 21 - 2017, 10:07 -> Nov 21 2017, 10:08 -
-
    -
  • Session EndedNov 21 2017, 10:08
  • -
  • Session Length41s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Nov 13 - 2017, 19:15 -> Nov 13 2017, 19:15 -
-
    -
  • Session EndedNov 13 2017, 19:15
  • -
  • Session Length30s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Nov 13 - 2017, 19:12 -> Nov 13 2017, 19:14 -
-
    -
  • Session EndedNov 13 2017, 19:14
  • -
  • Session Length1m 49s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Nov 08 - 2017, 09:04 -> Nov 08 2017, 09:50 -
-
    -
  • Session EndedNov 08 2017, 09:50
  • -
  • Session Length45m 28s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths1 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Nov 06 - 2017, 14:56 -> Nov 06 2017, 14:56 -
-
    -
  • Session EndedNov 06 2017, 14:56
  • -
  • Session Length7s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 31 - 2017, 10:51 -> Oct 31 2017, 10:52 -
-
    -
  • Session EndedOct 31 2017, 10:52
  • -
  • Session Length1m 4s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths1 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 14:19 -> Oct 30 2017, 14:20 -
-
    -
  • Session EndedOct 30 2017, 14:20
  • -
  • Session Length26s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 14:18 -> Oct 30 2017, 14:18 -
-
    -
  • Session EndedOct 30 2017, 14:18
  • -
  • Session Length3s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 14:17 -> Oct 30 2017, 14:17 -
-
    -
  • Session EndedOct 30 2017, 14:17
  • -
  • Session Length25s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 14:16 -> Oct 30 2017, 14:16 -
-
    -
  • Session EndedOct 30 2017, 14:16
  • -
  • Session Length3s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 14:14 -> Oct 30 2017, 14:14 -
-
    -
  • Session EndedOct 30 2017, 14:14
  • -
  • Session Length2s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 14:13 -> Oct 30 2017, 14:13 -
-
    -
  • Session EndedOct 30 2017, 14:13
  • -
  • Session Length1s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 14:12 -> Oct 30 2017, 14:12 -
-
    -
  • Session EndedOct 30 2017, 14:12
  • -
  • Session Length2s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 14:11 -> Oct 30 2017, 14:11 -
-
    -
  • Session EndedOct 30 2017, 14:11
  • -
  • Session Length1s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 14:10 -> Oct 30 2017, 14:10 -
-
    -
  • Session EndedOct 30 2017, 14:10
  • -
  • Session Length3s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 14:09 -> Oct 30 2017, 14:09 -
-
    -
  • Session EndedOct 30 2017, 14:09
  • -
  • Session Length2s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 14:08 -> Oct 30 2017, 14:08 -
-
    -
  • Session EndedOct 30 2017, 14:08
  • -
  • Session Length8s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 14:04 -> Oct 30 2017, 14:05 -
-
    -
  • Session EndedOct 30 2017, 14:05
  • -
  • Session Length1m 1s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:57 -> Oct 30 2017, 13:57 -
-
    -
  • Session EndedOct 30 2017, 13:57
  • -
  • Session Length1s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:53 -> Oct 30 2017, 13:53 -
-
    -
  • Session EndedOct 30 2017, 13:53
  • -
  • Session Length2s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:52 -> Oct 30 2017, 13:53 -
-
    -
  • Session EndedOct 30 2017, 13:53
  • -
  • Session Length22s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:50 -> Oct 30 2017, 13:50 -
-
    -
  • Session EndedOct 30 2017, 13:50
  • -
  • Session Length2s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:48 -> Oct 30 2017, 13:48 -
-
    -
  • Session EndedOct 30 2017, 13:48
  • -
  • Session Length1s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:47 -> Oct 30 2017, 13:47 -
-
    -
  • Session EndedOct 30 2017, 13:47
  • -
  • Session Length1s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:44 -> Oct 30 2017, 13:44 -
-
    -
  • Session EndedOct 30 2017, 13:44
  • -
  • Session Length2s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:41 -> Oct 30 2017, 13:41 -
-
    -
  • Session EndedOct 30 2017, 13:41
  • -
  • Session Length2s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:39 -> Oct 30 2017, 13:39 -
-
    -
  • Session EndedOct 30 2017, 13:39
  • -
  • Session Length2s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:37 -> Oct 30 2017, 13:37 -
-
    -
  • Session EndedOct 30 2017, 13:37
  • -
  • Session Length3s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:36 -> Oct 30 2017, 13:36 -
-
    -
  • Session EndedOct 30 2017, 13:36
  • -
  • Session Length15s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:34 -> Oct 30 2017, 13:34 -
-
    -
  • Session EndedOct 30 2017, 13:34
  • -
  • Session Length2s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:32 -> Oct 30 2017, 13:32 -
-
    -
  • Session EndedOct 30 2017, 13:32
  • -
  • Session Length1s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:30 -> Oct 30 2017, 13:31 -
-
    -
  • Session EndedOct 30 2017, 13:31
  • -
  • Session Length25s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:29 -> Oct 30 2017, 13:29 -
-
    -
  • Session EndedOct 30 2017, 13:29
  • -
  • Session Length4s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:28 -> Oct 30 2017, 13:28 -
-
    -
  • Session EndedOct 30 2017, 13:28
  • -
  • Session Length4s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:27 -> Oct 30 2017, 13:27 -
-
    -
  • Session EndedOct 30 2017, 13:27
  • -
  • Session Length18s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:26 -> Oct 30 2017, 13:26 -
-
    -
  • Session EndedOct 30 2017, 13:26
  • -
  • Session Length7s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:24 -> Oct 30 2017, 13:24 -
-
    -
  • Session EndedOct 30 2017, 13:24
  • -
  • Session Length14s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:23 -> Oct 30 2017, 13:23 -
-
    -
  • Session EndedOct 30 2017, 13:23
  • -
  • Session Length3s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:22 -> Oct 30 2017, 13:22 -
-
    -
  • Session EndedOct 30 2017, 13:22
  • -
  • Session Length35s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:21 -> Oct 30 2017, 13:21 -
-
    -
  • Session EndedOct 30 2017, 13:21
  • -
  • Session Length6s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:20 -> Oct 30 2017, 13:20 -
-
    -
  • Session EndedOct 30 2017, 13:20
  • -
  • Session Length26s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:18 -> Oct 30 2017, 13:18 -
-
    -
  • Session EndedOct 30 2017, 13:18
  • -
  • Session Length39s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:17 -> Oct 30 2017, 13:17 -
-
    -
  • Session EndedOct 30 2017, 13:17
  • -
  • Session Length3s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:16 -> Oct 30 2017, 13:16 -
-
    -
  • Session EndedOct 30 2017, 13:16
  • -
  • Session Length3s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:15 -> Oct 30 2017, 13:15 -
-
    -
  • Session EndedOct 30 2017, 13:15
  • -
  • Session Length3s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:13 -> Oct 30 2017, 13:14 -
-
    -
  • Session EndedOct 30 2017, 13:14
  • -
  • Session Length30s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
-
-
- -
-
-
-
-
Oct 30 - 2017, 13:04 -> Oct 30 2017, 13:04 -
-
    -
  • Session EndedOct 30 2017, 13:04
  • -
  • Session Length3s
  • -
  • ServerServer 1
  • -
  • -
  • Player Kills0
  • -
  • Mob Kills0
  • -
  • Deaths0 -
  • -
-
-
-
- -
-
-
-
- - - - - - - - - - - - - - - -
TimeKilledWith
No Kills
-
-
-
-
+
+
+

Registered Players 0

+

Players Online 0 / 20 +

+

Type git-Paper-1192 (MC: 1.12.1) +

+
- -
- -
-
-
-
-

World Playtime

-
-
-
-
-
-
-
- - -
-
-
-
-

Server Preference

-
-
-
-
-
-
-
- -
-
- \ No newline at end of file + + +