|
Author
|
Message
|
|
Member
|

01-09-2014
, 05:04
Re: [MySQL] - Stats plugin doesn't work... :(
|
#1
|
Questions:
1. Did you run MySQL server ?
2. Did you edited this line with your host and login and pass and db ? g_SqlTuple = SQL_MakeDbTuple("host", "user", "pass", "database")
3. Did you created a table ?
CREATE TABLE IF NOT EXISTS `score` (
`id` int(11) NOT NULL auto_increment,
`team` varchar(255) default NULL,
`playerName` varchar(255) default NULL,
`score` int(11) default NULL,
`deaths` int(11) default NULL,
`country` int(11) default NULL,
`status` int(11) default NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
__________________
Life is good, sometimes...
|
|
|
|