I think the DB is outdated L0st. Whenever I try to run my server the character database calls a fatal error. The guild table is completely messed up. I guess we will just have to wait for a new DB. Before you ask, I have executed the updates, and it still causes this error.
EDIT: I fixed my problem. Anyone else who is encountering this problem execute this sql code I made in your character Database.
Code:
DROP TABLE IF EXISTS `guild`;
CREATE TABLE `guild` (
`guildid` int(6) NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL,
`leaderguid` int(6) NOT NULL DEFAULT '0',
`info` text NOT NULL,
`motd` varchar(255) NOT NULL DEFAULT '0',
`createdate` bigint(20) NOT NULL DEFAULT '0',
`EmblemStyle` int(5) NOT NULL DEFAULT '0',
`EmblemColor` int(5) NOT NULL DEFAULT '0',
`BorderStyle` int(5) NOT NULL DEFAULT '0',
`BorderColor` int(5) NOT NULL DEFAULT '0',
`BackgroundColor` int(5) NOT NULL DEFAULT '0',
`BankMoney` bigint(12) NOT NULL DEFAULT '0',
`xp` bigint(20) NOT NULL DEFAULT '0',
`level` int(3) NOT NULL DEFAULT '1',
PRIMARY KEY (`guildid`)