I have reached the first big milestone: I managed to go through the list of plugins we ran on the server and update or replace every single ciritical one with either a similar replacement or a updated version of the old plugin. There are those that are missing (13 of them):
- Those that allowed us to create special worlds like the flatlands etc. Not having those is not critical, since we have those worlds already, but I want to check if we can replace them.
- The PVP plugin
- Hats, disguises, playerheads – I skipped those for now.
- Some that addressed bugs in older versions of minecraft
- One that prevented some hacks/cheats. I need to check if this is still needed.
- Some smaller utilities that were only occasionally used
There are some that I had to replace with a new plugin promising the same core functionality:
- bshortcuts: This allowed us to shorten commands. almost all commands that are custom to this server, like the shop etc, should actually be prefixed with /ws, e.g. /ws depotlist instead of /depotlist. Since the new plugin uses a different configfile I need to transfer and test all those commands.
- perworldInventory: This enables us to have a different inventory from the flatlands to the normal world. I need to see if migrating from the old plugin to the new one, inventories will be preserved. In case this does not work, I need to either somehow dump the survival inventories into the deposit, allow everyone to stash their stuff in boxes on the old server before we upgrade or somethign similar.
There is however already one game-breaking issue: The new way how signs in the game work is that you can right-click on them to edit the content. This is however also how our story-signs worked to display the stories. That means I have to find a way how to deal with that conflict. Either we need to ask people to click with a special tool on it (e.g. the left vs the right mouse button, a wooden sword etc) but in any case it will make the story signs less accesible for new players and I will have to find a way how to program that into the plugin. Hmmmm.
What’s next?
Now I can start the server with all the transferred plugins (37) and do not get any errors on launching it. Yay! Next, I need to try to transfer all the configurations from the old server to the new one. Since some years have passed, there is a risk that:
- The config format has changed considerably and I have to weed through hundreds of lines and make sure that we do not lose some core settings
- That those who use a database did not change the database format. In some cases we can just dump the old database since it was only logging user behavior, in others, we need to preserve it and check how we can migrate (the user inventories for example).
Then, I need to test all the plugins and see if they actually work as expected, such as the minecarts, the story signs, the darklands etc etc.
Then, I need to update the worlds to the new format. Minecraft has changed around version 20 how worlds are stored and needs to upgrade the format. This does not change how the world looks like.
Lastly, I need to make sure that the expansion of the world height does not affect the regions that we have in the world.
And possibly more that I forgot now.