10-07-2007, 06:00 PM
Exactement comme dans le tuto de barst à savoir :
Les 3 tables qui contiennent toutes les infos sur les différents éléments qu'on affiche
CREATE TABLE `batiment` (
`id` smallint(6) NOT NULL auto_increment,
`image` varchar(50) NOT NULL default '',
`name` varchar(50) NOT NULL default '',
PRIMARY KEY (`id`)
);
CREATE TABLE `perso` (
`id` smallint(6) NOT NULL auto_increment,
`image` varchar(50) NOT NULL default '',
`name` varchar(50) NOT NULL default '',
PRIMARY KEY (`id`)
) ;
CREATE TABLE `terrain` (
`id` smallint(6) NOT NULL auto_increment,
`image` varchar(50) NOT NULL default '',
`name` varchar(50) NOT NULL default '',
PRIMARY KEY (`id`)
) ;
Cette table qui affiche tout et qui est liée aux 3 autres par le elt_type (batiment,perso ou terrain) et par le elt_id (quel batiment, perso ou terrain)
CREATE TABLE `map` (
`x` int(11) NOT NULL default '0',
`y` int(11) NOT NULL default '0',
`elt_type` enum('1','2','3') NOT NULL default '1',
`elt_id` smallint(6) NOT NULL default '0',
PRIMARY KEY (`x`,`y`,`elt_type`)
) ;
Merci d'avoir pris le temps de me répondre^^
Les 3 tables qui contiennent toutes les infos sur les différents éléments qu'on affiche
CREATE TABLE `batiment` (
`id` smallint(6) NOT NULL auto_increment,
`image` varchar(50) NOT NULL default '',
`name` varchar(50) NOT NULL default '',
PRIMARY KEY (`id`)
);
CREATE TABLE `perso` (
`id` smallint(6) NOT NULL auto_increment,
`image` varchar(50) NOT NULL default '',
`name` varchar(50) NOT NULL default '',
PRIMARY KEY (`id`)
) ;
CREATE TABLE `terrain` (
`id` smallint(6) NOT NULL auto_increment,
`image` varchar(50) NOT NULL default '',
`name` varchar(50) NOT NULL default '',
PRIMARY KEY (`id`)
) ;
Cette table qui affiche tout et qui est liée aux 3 autres par le elt_type (batiment,perso ou terrain) et par le elt_id (quel batiment, perso ou terrain)
CREATE TABLE `map` (
`x` int(11) NOT NULL default '0',
`y` int(11) NOT NULL default '0',
`elt_type` enum('1','2','3') NOT NULL default '1',
`elt_id` smallint(6) NOT NULL default '0',
PRIMARY KEY (`x`,`y`,`elt_type`)
) ;
Merci d'avoir pris le temps de me répondre^^
spider cochon, spider cochon, il peut marcher au plafond.
prend gaaarde spider cochon est là !
prend gaaarde spider cochon est là !