Add this into you're database:
CREATE TABLE IF NOT EXISTS `freplies` (
`sectionid` int(100) NOT NULL,
`topicid` int(100) NOT NULL,
`postid` int(100) NOT NULL auto_increment,
`playerid` int(100) NOT NULL,
`timesent` int(100) NOT NULL,
`body` text character set latin1 NOT NULL,
`reported` int(1) NOT NULL default '0',
`reporter` int(100) NOT NULL default '0',
PRIMARY KEY (`postid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=19153 ;
-- --------------------------------------------------------
--
-- Tabelstructuur voor tabel `ftopics`
--
CREATE TABLE IF NOT EXISTS `ftopics` (
`sectionid` int(2) NOT NULL,
`forumid` int(100) NOT NULL auto_increment,
`playerid` int(100) NOT NULL,
`timesent` int(100) NOT NULL,
`lastreply` int(100) NOT NULL,
`views` int(100) NOT NULL default '0',
`subject` text character set latin1 NOT NULL,
`body` text character set latin1 NOT NULL,
`locked` int(1) NOT NULL default '0',
`sticky` int(1) NOT NULL default '0',
`reported` int(1) NOT NULL default '0',
`reporter` int(100) NOT NULL default '0',
PRIMARY KEY (`forumid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2451 ;