Can somebody tell me what this is please?
Attachments
-
Screenshot_16.png58.2 KB · Views: 41 · VirusTotal
could you jump in a discord call?
i cant man im not lying i'd be so much fucking easier if someone could talk me through or just see what happens when i load it
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;
the tiles table is probably missing, but can't tell from that screenshot (you could pull the window to the right and resize it to show the full error message)
run this query in your database
SQL: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;