• 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!

Solved Table tiles doesn't exist

simson361

The Grim Reaper
Joined
Aug 4, 2010
Messages
626
Reaction score
27
Location
sweden
rN0RNvm.png

got this error and the server starts up but this error keep coming in 1 minit then it starts :/ :(
 

Attachments

Last edited:
Yes its better^^

You need to add table tibiaot.tiles

But I searched on the forum on this error and from what I could see it's easier for you to just change engine...
 
i have another engine but u know how to make a new table like that? (im new on this) and is it very important to have that table if i dont have it what will happen?
 
Try run this query

Code:
CREATE TABLE `tiles`
(
	`id` INT UNSIGNED NOT NULL,
	`world_id` TINYINT(2) UNSIGNED NOT NULL DEFAULT 0,
	`house_id` INT UNSIGNED NOT NULL,
	`x` INT(5) UNSIGNED NOT NULL,
	`y` INT(5) UNSIGNED NOT NULL,
	`z` TINYINT(2) UNSIGNED NOT NULL,
	UNIQUE (`id`, `world_id`),
	KEY (`x`, `y`, `z`),
	FOREIGN KEY (`house_id`, `world_id`) REFERENCES `houses`(`id`, `world_id`) ON DELETE CASCADE
) ENGINE = InnoDB;
 
CREATE TABLE `tile_items`
(
	`tile_id` INT UNSIGNED NOT NULL,
	`world_id` TINYINT(2) UNSIGNED NOT NULL DEFAULT 0,
	`sid` INT NOT NULL,
	`pid` INT NOT NULL DEFAULT 0,
	`itemtype` INT NOT NULL,
	`count` INT NOT NULL DEFAULT 0,
	`attributes` BLOB NOT NULL,
	UNIQUE (`tile_id`, `world_id`, `sid`), KEY (`sid`),
	FOREIGN KEY (`tile_id`) REFERENCES `tiles`(`id`) ON DELETE CASCADE
) ENGINE = InnoDB;
 
i FUCKING love you and will forever love you brother. thax for the help! <3

- - - Updated - - -

by the way it worked fine! epic thx alot.!! ^^ :D
 
indeed you did! and it worked just fine now big thx to you my friend! :w00t:

- - - Updated - - -

can you help me find a table for house aswell? :/ says this
1joKOJk.jpg

- - - Updated - - -

1joKOJk.png

can you help me fix table for house /i think its what it needs atleast

- - - Updated - - -

1joKOJk.jpg
can u fix table for house aswell? ^_^
 
this is for house_lists

Code:
CREATE TABLE `house_lists`
(
	`house_id` INT UNSIGNED NOT NULL,
	`world_id` TINYINT(2) UNSIGNED NOT NULL DEFAULT 0,
	`listid` INT NOT NULL,
	`list` TEXT NOT NULL,
	UNIQUE (`house_id`, `world_id`, `listid`),
	FOREIGN KEY (`house_id`, `world_id`) REFERENCES `houses`(`id`, `world_id`) ON DELETE CASCADE
) ENGINE = InnoDB;
 

Similar threads

Back
Top