Hey so I added the RuneTopList V2 Tutorial to my server, (718) but I've got a few problems..

I added the RuneTopListV2.1.jar file to my data/libs folder and then I went into Eclipse and added that jar file into my libraries, I then added the import org.runetoplist.*; into my player.java and commands.java and it said that there were no errors and everything was good..

Tutorial link: http://www.rune-server.org/runescape...ote4items.html
Also used http://www.rune-server.org/runescape...system-v2.html for the converted part

So then I ran my server and as I clicked log in I got this error:

Spoiler for error:
[Launcher] Initing Cache...
[GrandExchange] Loading Data...
[Launcher] Initing Data Files...
[Launcher] Initing Fishing Spots...
[Launcher] Initing NPC Combat Scripts...
[Launcher] Initing Dialogues...
[Launcher] Initing Controlers...
[Launcher] Initing Cutscenes...
[Launcher] Initing Friend Chats Manager...
[Launcher] Initing Cores Manager...
[Launcher] Initing World...
[Launcher] Initing Region Builder...
[Launcher] Initing Server Channel Handler...
[Launcher] Server took 4122 milli seconds to launch.
ERROR! THREAD NAME: New I/O worker #1
java.lang.NoClassDefFoundError: org/runetoplist/VoteChecker
at com.rs.game.player.Player.<clinit>(Player.java:176 )
at com.rs.net.decoders.LoginPacketsDecoder.decodeWorl dLogin(LoginPackets
Decoder.java:165)
at com.rs.net.decoders.LoginPacketsDecoder.decode(Log inPacketsDecoder.ja
va:41)
at com.rs.net.ServerChannelHandler.messageReceived(Se rverChannelHandler.
java:98)
at org.jboss.netty.channel.SimpleChannelHandler.handl eUpstream(SimpleCha
nnelHandler.java:95)
at org.jboss.netty.channel.DefaultChannelPipeline.sen dUpstream(DefaultCh
annelPipeline.java:563)
at org.jboss.netty.channel.DefaultChannelPipeline.sen dUpstream(DefaultCh
annelPipeline.java:558)
at org.jboss.netty.channel.Channels.fireMessageReceiv ed(Channels.java:26
8)
at org.jboss.netty.channel.Channels.fireMessageReceiv ed(Channels.java:25
5)
at org.jboss.netty.channel.socket.nio.NioWorker.read( NioWorker.java:91)
at org.jboss.netty.channel.socket.nio.AbstractNioWork er.processSelectedK
eys(AbstractNioWorker.java:373)
at org.jboss.netty.channel.socket.nio.AbstractNioWork er.run(AbstractNioW
orker.java:247)
at org.jboss.netty.channel.socket.nio.NioWorker.run(N ioWorker.java:35)
at org.jboss.netty.util.ThreadRenamingRunnable.run(Th readRenamingRunnabl
e.java:102)
at org.jboss.netty.util.internal.DeadLockProofWorker$ 1.run(DeadLockProof
Worker.java:42)
at java.util.concurrent.ThreadPoolExecutor.runWorker( Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run (Unknown Source)
at java.lang.Thread.run(Unknown Source)
Caused by: java.lang.ClassNotFoundException: org.runetoplist.VoteChecker
at java.net.URLClassLoader$1.run(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
... 18 more


So i went back into Eclipse and it still said there were no errors, then I used my compiler.bat and it says that I do in fact have errors, this is what I got from my compiler

Spoiler for error:

C:\Users\BlakeW\Dropbox\NRS3server 725\NRS3server 725>echo off
Building please wait...
src\com\rs\game\player\Player.java:14: error: package org.runetoplist does not e
xist
import org.runetoplist.*;
^
src\com\rs\game\player\Player.java:15: error: package org.runetoplist does not e
xist
import org.runetoplist.VoteReward;
^
src\com\rs\game\player\Player.java:177: error: cannot find symbol
public static VoteChecker voteChecker = new VoteChecker("localhost", "sa
credis_runetoplistv2", "sacredis_blake", "sk8rocker");
^
symbol: class VoteChecker
location: class Player
src\com\rs\game\player\content\Commands.java:13: error: package org.runetoplist
does not exist
import org.runetoplist.VoteReward;
^
src\com\rs\game\player\content\Commands.java:14: error: package org.runetoplist
does not exist
import org.runetoplist.*;
^
src\com\rs\game\player\Player.java:177: error: cannot find symbol
public static VoteChecker voteChecker = new VoteChecker("localhost", "sa
credis_runetoplistv2", "sacredis_blake", "sk8rocker");
^
symbol: class VoteChecker
location: class Player
src\com\rs\game\player\content\Commands.java:2647: error: cannot find symbol
VoteReward reward = Player.voteChecker.getReward(pla
yer.getUsername().replaceAll(" ", "_"));
^
symbol: class VoteReward
location: class Commands
7 errors
Compiled.
Press any key to continue . . .