• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Tfs 0.3.6pl1 Crying Damson Problem

shivals

New Member
Joined
Mar 10, 2011
Messages
5
Reaction score
0
Hello guys.
When i run the server i get this error :
>> Initializing game state modules and registering services...
> ERROR: Failed to load motd!
> ERROR: Failed to load players record!
 
You are missing those database tables

- - - Updated - - -

LUA:
CREATE TABLE `server_motd`
(
        `id` INT UNSIGNED NOT NULL,
        `world_id` TINYINT(2) UNSIGNED NOT NULL DEFAULT 0,
        `text` TEXT NOT NULL,
        UNIQUE (`id`, `world_id`)
) ENGINE = InnoDB;


INSERT INTO `server_motd` VALUES (1, 0, 'Welcome to The Forgotten Server!');

LUA:
CREATE TABLE `server_record`
(
        `record` INT NOT NULL,
        `world_id` TINYINT(2) UNSIGNED NOT NULL DEFAULT 0,
        `timestamp` BIGINT NOT NULL,
        UNIQUE (`record`, `world_id`, `timestamp`)
) ENGINE = InnoDB;


INSERT INTO `server_record` VALUES (0, 0, 0);
 
You are missing those database tables

- - - Updated - - -

LUA:
CREATE TABLE `server_motd`
(
        `id` INT UNSIGNED NOT NULL,
        `world_id` TINYINT(2) UNSIGNED NOT NULL DEFAULT 0,
        `text` TEXT NOT NULL,
        UNIQUE (`id`, `world_id`)
) ENGINE = InnoDB;


INSERT INTO `server_motd` VALUES (1, 0, 'Welcome to The Forgotten Server!');

LUA:
CREATE TABLE `server_record`
(
        `record` INT NOT NULL,
        `world_id` TINYINT(2) UNSIGNED NOT NULL DEFAULT 0,
        `timestamp` BIGINT NOT NULL,
        UNIQUE (`record`, `world_id`, `timestamp`)
) ENGINE = InnoDB;


INSERT INTO `server_record` VALUES (0, 0, 0);

I did it and still get that error even with sqlite database i get that error -.-
but when i download new one exe it works maybe i deleted something or idk when i compile the source
 
Last edited:
Back
Top