Hello I made a Script, the idea is to have a NPC, maybe later a @command , that counts the number of cards that the Player adquired for the first time.
but total cards is always returning 1
I have tried using ("SELECT COUNT(DISTINCT card_id) an then I got -1
prontera,140,174,4 script Personal storage2#prt 113,{
OnInit:
// Query of obtained cards
totalCards = query_sql("SELECT COUNT(*) FROM player_cards WHERE account_id = '" + getcharid(3) + "'");
// totalCards = query_sql("SELECT COUNT(card_id) FROM player_cards WHERE account_id = '" + getcharid(3) + "'");
mes "[Card Album]";
mes "Here, let me open";
mes "your Card record.";
mes "You have collected " + totalCards + " cards out of 1009.";
mes "Thank you for using";
mes "the Kafra Service.";
close;
}
(I am using PHPMYADMIN to Run the server locally)this table records when you get a card, the name of the table is player_cards and is together with the other tables of Rathena_DB
it looks like this:
what I am doing wrong?