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

Forgottenserver.tiles and account management

Lingon

New Member
Joined
Nov 8, 2011
Messages
32
Reaction score
0
Hello, someone can give me code for forgottenserver.tiles table in SQL?

And I also need code for account management in SQL table..


Rep+ for the one who give me it.
 
CREATE TABLE `tiles`
(
`id` INT UNSIGNED NOT NULL,
`world_id` TINYINT(4) 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;
 
Hmm why do I get this error when trying to login at my website then? :/

Serverfel
Ett fel uppstod när webbplatsen skulle hämta http://127.0.0.1/?subtopic=accountmanagement. Den kan ligga nere för underhåll eller vara felkonfigurerad.
Här följer några förslag:
Läs in webbsidan igen senare.
HTTP-fel 500 (Internal Server Error): Ett oväntat tillstånd gjorde att servern inte kunde uppfylla begäran.


It's swedish language so I dont know if you understand..
 
Back
Top