Setup
Installing HypItems
- Download the latest version of HypItems.
- Place the downloaded jar file inside your server's plugin directory.
Installing the Database Driver
- Inside your server's directory, create a new directory called
lib. - Download a database driver of your choice, for example the SQLite driver.
- Move the driver to the
libdirectory.
Configure Launch Script
Your launch script may look something like this:
java -jar craftbukkit.jar
To also load the jar files located in the lib directory, replace the -jar option with -classpath.
java -classpath 'craftbukkit.jar':'lib/*.jar' org.bukkit.craftbukkit.Main
This makes sure that you load the server, as well as all your libraries.
Comments