Hey I am using this tutorial, http://www.rune-server.org/showthrea...ysql+to+server

I am stuck at the parts that say this, Also I am using delta base.

I will now show you how I use these function on my login method of my server:
Code:
if(MYSQL.checkVotes(playerName)){
if(freeSlots() > 2)
{
if(MYSQL.voteGiven(playerName))
{
giveItem(995,5000000);
sendMessage("Thank you for voting!");
}
}else{
sendMessage("You do not have enough free space to receive items");
}
}
I am not going to spoon feed users on information of how to use this, I have included the com driver and the scripts examples to use this.

Rememeber to use the MYSQL class you will need to connect to the database once the server is loaded:

Code:
MYSQL.createConnection();