I have taken on the role of a game server owner, administrator, and overall do it all myself but, I need help with an add-on to the game that shows players stats.
This involves editing a database table to correctly match the example shown on the developers installation instructions.
This is the code I need my db to match.
Code:
CREATE TABLE IF NOT EXISTS `playerstats` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` text NOT NULL,
`kills` INT NOT NULL,
`deaths` INT NOT NULL,
`suicides` INT NOT NULL,
`bears` INT NOT NULL,
`wolves` INT NOT NULL,
`stags` INT NOT NULL,
`boars` INT NOT NULL,
`chickens` INT NOT NULL,
`rabbits` INT NOT NULL,
`total` INT NOT NULL,
`points` INT NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1;
Any of you (that I know) willing to take on this simple task?
I will of course have to give you access to my hosting panel to alter the db. That's why I need to deal with someone on here I know and can trust