09.10.2015, 21:04
Yes. With that code you're creating the table "Users", probably you're running it on OnGameModeInit, instead, open your database with phpmyadmin, and execute this query:
PHP код:
CREATE TABLE IF NOT EXISTS `Users` (
`Userid` int(10) NOT NULL,
`Username` varchar(24) NOT NULL,
`Password` varchar(129) NOT NULL,
`Admin` int(11) NOT NULL,
`Premium` int(11) NOT NULL,
`Money` int(11) NOT NULL,
`Score` int(11) NOT NULL,
`Kills` int(11) NOT NULL,
`Deaths` int(11) NOT NULL,
`Deaths` int(11) NOT NULL,
`KG` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;