Thank you Capuche, that helped a lot.
I got another problem, I fixed the NPC with your help Capuche, but another problem came out, it wouldn't add up the vote points from the SQL DB.
Look at account_id column, where it says 2000003 for four columns, the NPC only displays 1 row, meaning every time I check the NPC for points, it only says that I have 5 points but in reality should have 20 points or so.
This is my edited NPC script, maybe there's another problem that I don't see that you might see.
quiz_02,22,375,6 script V4P NPC 829,{
set .n$,"[Vote Redeemer]";
function getPoints;
function delPoints;
set .@points,getPoints(getcharid(3));
mes .n$;
mes "What would you like to do?";
next;
switch(select("- Check Vote Points","- Redeem Vote Points","Cancel")) {
Case 1:
mes .n$;
mes "You have :";
mes "^FF0000"+.@points+"^000000 Vote Point(s).";
close;
Case 2:
mes .n$;
mes "How many you want to";
mes "exchange?";
input .@rpoints;
next;
if (.@rpoints > .@points) {
mes .n$;
mes "You don't have enough";
mes "vote points.";
close;
} else {
delPoints(getcharid(3),.@rpoints);
getitem 673,.@rpoints;
mes .n$;
mes "Congratulations~";
mes "Please vote again as soon as";
mes "you can.";
close;
}
default :
mes .n$;
mes "Come back when you need";
mes "anything else.";
close;
}
end; // END of NPC
// FUNCTIONS
function getPoints {
set .@account_id,getarg(0);
query_sql ("SELECT `credits` FROM `cp_votes` WHERE account_id="+.@account_id+" LIMIT 30",.@points);
return .@points;
}
function delPoints {
set .@account_id,getarg(0);
set .@rpoints,getarg(1);
query_sql("UPDATE `cp_votes` SET credits=(credits-"+.@rpoints+") WHERE account_id='"+.@account_id+"'");
return;
}
}
My hypothesis on this is that the NPC only gets the information from the banner_id column if it states that it is banner "1", if so, how can I add up those multiple banners specifically banner "2","3", and "4" and some future banners that I might want to place there.