Development thread can be found here:
Demo of the version can be found here:
Download of uberCMS reDev can be found here:
You might want to import this into your database. (preferably phoenix)
What does it include?
index (habbo's latest revision)
quick register
me (habbo's latest revision)
habbo homes (similar to habbo.com)
account settings
articles
error page
You must be registered for see links
Demo of the version can be found here:
You must be registered for see links
Download of uberCMS reDev can be found here:
You must be registered for see links
You might want to import this into your database. (preferably phoenix)
PHP:
--
-- Table structure for table `homes`
--
CREATE TABLE IF NOT EXISTS `homes` (
`home_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`allow_display` enum('0','1') NOT NULL DEFAULT '1',
`link_id` int(11) NOT NULL,
PRIMARY KEY (`home_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `homes_items`
--
CREATE TABLE IF NOT EXISTS `homes_items` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`home_id` int(10) unsigned NOT NULL,
`x` int(11) NOT NULL DEFAULT '0',
`y` int(11) NOT NULL DEFAULT '0',
`z` int(11) NOT NULL DEFAULT '0',
`data` varchar(500) NOT NULL,
`skin` text NOT NULL,
PRIMARY KEY (`id`),
KEY `home_id` (`home_id`),
KEY `data` (`data`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
What does it include?
index (habbo's latest revision)
quick register
me (habbo's latest revision)
habbo homes (similar to habbo.com)
account settings
articles
error page