maybe you need convert it to variable #CASHPOINTS and using OnPCLoginEvent to convert it to cash shop in the game
in my private server using this script to convert it .
- script VotePointConvert -1,{
OnPCLoginEvent:
query_sql("SELECT `YOURCOLUMNPOINTS` FROM `YOURTABLEVOTE` WHERE account_id="+getcharid(3)+" LIMIT 1",.@points);
if (!.@points) end;
query_sql("UPDATE `COLUMNUSER` SET YOURCOLUMNPOINTS=(YOURCOLUMNPOINTS-"+.@points+") WHERE account_id='"+getcharid(3)+"'");
set #CASHPOINTS, #CASHPOINTS+.@points;
//set #VOTEPOINTS, 0;
dispbottom "Cash Points updated! Total: "+#CASHPOINTS;
end;
}
maybe it can help you sir
What will be the COLUMNUSER ? YOURCOLUMNPOINTS? and YOURTABLEVOTE?
this is table from your vote database , like this :
CREATE TABLE `vote_point` (
`account_id` int(11) NOT NULL default '0',
`point` int(11) NOT NULL default '0',
`last_vote1` int(11) NOT NULL default '0',
`last_vote2` int(11) NOT NULL default '0',
`last_vote3` int(11) NOT NULL default '0',
`last_vote4` int(11) NOT NULL default '0',
`last_vote5` int(11) NOT NULL default '0',
`date` text NOT NULL,
PRIMARY KEY (`account_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
i use this query for save my vote points
- script RewardPointConvertnew -1,{
OnPCLoginEvent:
query_sql("SELECT `point` FROM `vote_point` WHERE account_id="+getcharid(3)+" LIMIT 1",.@rewards);
if (!.@rewards)
end;
query_sql("UPDATE `vote_point` SET point=(point-"+.@rewards+") WHERE account_id='"+getcharid(3)+"'");
set #CASHPOINTS, #CASHPOINTS+.@rewards;
dispbottom "Cash Point updated! Total: "+#CASHPOINTS;
dispbottom "Harap Relogin kembali ~";
end;
}
and use this for convert it to cash point ,
maybe it different with you database, so i use the COLUMNUSER, YOURCOLUMNPOINTS and YOURTABLEVOTE for example row in database
note : first script its wrong sir , sorry my mistake
post here your database where it save the vote from flux..
CREATE TABLE IF NOT EXISTS `cp_votes` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`banner_id` int(10) unsigned NOT NULL,
`account_id` int(10) unsigned NOT NULL,
`credits` int(10) unsigned NOT NULL,
`vote_date` datetime NOT NULL,
`vote_ip` varchar(15) NOT NULL,
PRIMARY KEY (`id`),
KEY `banner_id` (`banner_id`,`account_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=563 ;
Here :-) Can you make one for me :-)
@rewards - what does this mean? Is it the command to convert? or can i use @cash?