Thread: ProKreedz 2.31
View Single Post
a412010
Member
Join Date: Oct 2008
Location: Taipei, Taiwan
Old 02-05-2011 , 22:13   Re: ProKreedz 2.26
Reply With Quote #262

@nuclear
Test server: 123.204.89.226:27015 with old kz-arg database

Note: My kz-arg plugin was edtied that it can save cps.

How to edit the plugin to use this:
1.
Code:
 formatex(createinto, 1000, "CREATE TABLE IF NOT EXISTS `kz_pro15` (`mapname` varchar(64) NOT NULL, `authid` varchar(64) NOT NULL, `country` varchar(6) NOT NULL, `name` varchar(64) NOT NULL, `time` decimal(65,2)   NOT NULL, `date` datetime NOT NULL, `weapon` varchar(64) NOT NULL, `server` varchar(64) NOT NULL)") 
    formatex(createinto, 1000, "CREATE TABLE IF NOT EXISTS `kz_nub15` (`mapname` varchar(64) NOT NULL, `authid` varchar(64) NOT NULL, `country` varchar(6) NOT NULL, `name` varchar(64) NOT NULL, `time`decimal(65,2)  NOT NULL, `date` datetime NOT NULL, `weapon` varchar(64) NOT NULL, `server` varchar(64) NOT NULL, `checkpoints` real NOT NULL, `gocheck` real NOT NULL)")
Code:
 `authid` varchar(64) NOT NULL, `country` varchar(6) NOT NULL
->
Code:
 `country` varchar(6) NOT NULL, `authid` varchar(64) NOT NULL
2.
Code:
formatex( createinto, sizeof createinto - 1, "INSERT INTO `%s` VALUES('%s', '%s','%s','%s','%f','%s','%s','%s'%s%s)", style == PRO_TOP ? "kz_pro15" : "kz_nub15", map, steam, country, name, newtime, dia, g_weaponsnames[str_to_num(x2)], server, style == PRO_TOP ? "" : checkpoints, style == PRO_TOP ? "" : gochecks)
->
Code:
formatex( createinto, sizeof createinto - 1, "INSERT INTO `%s` VALUES('%s', '%s','%s','%s','%f','%s','%s','%s'%s%s)", style == PRO_TOP ? "kz_pro15" : "kz_nub15", map, country, steam, name, newtime, dia, g_weaponsnames[str_to_num(x2)], server, style == PRO_TOP ? "" : gochecks, style == PRO_TOP ? "" : checkpoints)
This is my way to use this.

update:
This plugin seems have problem @ kzsca_sonic_e...players' cs crashed when they pressed the end button whether they have cps or not...please check

Last edited by a412010; 02-06-2011 at 05:41. Reason: forgot server's port
a412010 is offline