Postado Março 31, 2016 9 anos ta falando essas linhas ta falando house_lists tile_items tiles como eu adiciono?
Postado Março 31, 2016 9 anos 2 minutes ago, edukf said: ta falando essas linhas ta falando house_lists tile_items tiles como eu adiciono? house_list Spoiler CREATE TABLE IF NOT EXISTS `house_lists` ( `house_id` int(10) unsigned NOT NULL, `world_id` tinyint(2) unsigned NOT NULL DEFAULT '0', `listid` int(11) NOT NULL, `list` text NOT NULL, UNIQUE KEY `house_id` (`house_id`,`world_id`,`listid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; tile_items Spoiler CREATE TABLE IF NOT EXISTS `tile_items` ( `tile_id` int(10) unsigned NOT NULL, `world_id` tinyint(2) unsigned NOT NULL DEFAULT '0', `sid` int(11) NOT NULL, `pid` int(11) NOT NULL DEFAULT '0', `itemtype` int(11) NOT NULL, `count` int(11) NOT NULL DEFAULT '0', `attributes` blob NOT NULL, `serial` varchar(255) NOT NULL DEFAULT '', UNIQUE KEY `tile_id` (`tile_id`,`world_id`,`sid`), KEY `sid` (`sid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; tiles Spoiler CREATE TABLE IF NOT EXISTS `tiles` ( `id` int(10) unsigned NOT NULL, `world_id` tinyint(2) unsigned NOT NULL DEFAULT '0', `house_id` int(10) unsigned NOT NULL, `x` int(5) unsigned NOT NULL, `y` int(5) unsigned NOT NULL, `z` tinyint(2) unsigned NOT NULL, UNIQUE KEY `id` (`id`,`world_id`), KEY `x` (`x`,`y`,`z`), KEY `house_id` (`house_id`,`world_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; qualquer coisa me avise, abraços
Postado Março 31, 2016 9 anos no mesmo comentário, me mande o erro pelo hastebin, caso for imagem por aqui ou pelo imgur
Participe da conversa
Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.