games647 / ScoreboardStats

Bukkit plugin for customizing the sidebar of the scoreboard feature from minecraft
https://dev.bukkit.org/bukkit-mods/scoreboardstats/
MIT License
28 stars 45 forks source link

Support for Server system: Glowstone #32

Closed dequis closed 10 years ago

dequis commented 10 years ago

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)
games647 commented 10 years ago

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:

EDIT2:

dequis commented 10 years ago

Oh hey, thanks a lot for caring! :heart:

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 https://github.com/GlowstoneMC/Glowstone/issues/268

Fix missing drivers

See https://github.com/GlowstoneMC/Glowstone/issues/143

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

https://github.com/GlowstoneMC/Glowstone/issues/81

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

games647 commented 10 years ago

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.