ScoreboardStatsX

ScoreboardStatsX

3M Downloads

Support for Server system: Glowstone

dequis opened this issue · 3 comments

commented

Trying ScoreboardStats with glowstone, it fails with this extremely silly error message:

java.lang.IllegalStateException: Cannot parse version String '1.8-28-g73e8496-dev'
        at com.github.games647.scoreboardstats.Version.getVersionStringFromServer(Version.java:91)
        at com.github.games647.scoreboardstats.Version.getMinecraftVersionString(Version.java:81)
        at com.github.games647.scoreboardstats.ScoreboardStats.checkScoreboardCompatibility(ScoreboardStats.java:171)
        at com.github.games647.scoreboardstats.ScoreboardStats.onLoad(ScoreboardStats.java:119)
        at net.glowstone.GlowServer.loadPlugins(GlowServer.java:480)
        at net.glowstone.GlowServer.start(GlowServer.java:339)
        at net.glowstone.GlowServer.main(GlowServer.java:87)
commented

I fixed that one, but I found a couple of other ones.

First of all Glowstone's remapper doesn't work for me and second for now Glowstone doesn't have the driver for sql databases. I'll take a look into it. Especially the remapper, because it's really important as this is very important for the main features.

EDIT: Things to do:

  • Fix the remapper
  • Fix missing drivers
  • Fix scoreboard implementation. (scoreboard aren't implemented by Glowstone yet. Maybe a packet way solution?)

EDIT2:

  • Found a workaround for the remapper bug. Reporting a bug to glowstone tomorrow anyway .
commented

Oh hey, thanks a lot for caring! ❤️

Those seem to be mostly glowstone issues, nothing to change on your side afaik.

Fix the remapper

The remapper was added yesterday, I suspect it's not working at all. Not sure though. Needs a ticket GlowstoneMC/Glowstone#268

Fix missing drivers

See GlowstoneMC/Glowstone#143

Fix scoreboard implementation. (scoreboard aren't implemented by Glowstone yet. Maybe a packet way solution?)

GlowstoneMC/Glowstone#81

Don't worry about workarounding this, it's better for everyone to finish it in glowstone.

commented

Yeah, remapper is now working and ScoreboardStats now fails gracefully on the missing drivers. The only thing missing is the scoreboard implementation by glowstone.

As I see the implementation nearly finished.