
bigger pic: http://img526.imageshack.us/img526/2746/aaahx.png
This comes up when i try to login ingame

can anyone help me ?
Last edited:


CREATE TABLE `player_statements`
(
`id` INT NOT NULL AUTO_INCREMENT,
`player_id` INT NOT NULL,
`channel_id` INT NOT NULL DEFAULT 0,
`text` VARCHAR (255) NOT NULL,
`date` BIGINT NOT NULL DEFAULT 0,
PRIMARY KEY (`id`), KEY (`player_id`), KEY (`channel_id`),
FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) ON DELETE CASCADE
) ENGINE = InnoDB;
CREATE TABLE `market_history`
(
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
`player_id` INT NOT NULL,
`sale` TINYINT(1) NOT NULL DEFAULT 0,
`itemtype` INT UNSIGNED NOT NULL,
`amount` SMALLINT UNSIGNED NOT NULL,
`price` INT UNSIGNED NOT NULL DEFAULT 0,
`expires_at` BIGINT UNSIGNED NOT NULL,
`inserted` BIGINT UNSIGNED NOT NULL,
`state` TINYINT(1) UNSIGNED NOT NULL,
PRIMARY KEY(`id`), KEY(`player_id`, `sale`),
FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) ON DELETE CASCADE
) ENGINE = InnoDB;
CREATE TABLE `market_offers`
(
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
`player_id` INT NOT NULL,
`sale` TINYINT(1) NOT NULL DEFAULT 0,
`itemtype` INT UNSIGNED NOT NULL,
`amount` SMALLINT UNSIGNED NOT NULL,
`created` BIGINT UNSIGNED NOT NULL,
`anonymous` TINYINT(1) NOT NULL DEFAULT 0,
`price` INT UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (`id`), KEY(`sale`, `itemtype`), KEY(`created`),
FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) ON DELETE CASCADE
) ENGINE = InnoDB;
0.3.7 isn't from private SVN though.
