Hello. A couple of weeks ago I began to edit the original Habbo Template by Hejula - if you've seen this skin on
Screenshots
Queries
Download links
Mirror (31/01/16)
You must be registered for see links
you'll know it's nothing big, just a plain skin for people who need one. Some of the code isn't the best but it does work.Screenshots
Queries
Code:
DROP TABLE IF EXISTS `cms_rarevalues`;
CREATE TABLE `cms_rarevalues` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`item_name` varchar(25) DEFAULT '',
`item_image` varchar(30) DEFAULT '',
`item_cost` int(11) DEFAULT '0',
`item_status` enum('up','down','same') DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Code:
ALTER TABLE users ADD referer varchar(15) NOT NULL
Code:
DROP TABLE IF EXISTS `badge_shop`;
CREATE TABLE `badge_shop` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`badge_id` varchar(255) DEFAULT NULL,
`title` varchar(255) DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
`cost` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of badge_shop
-- ----------------------------
INSERT INTO `badge_shop` VALUES ('1', 'SGA', 'Slam Dunk', 'I\'m a baller!', '4');
INSERT INTO `badge_shop` VALUES ('2', 'BR8', 'Trees', 'Let\'s keep as many as we can!', '3');
INSERT INTO `badge_shop` VALUES ('3', '\r\nCAK', 'Canada', 'Who\'d be Canadian, eh?', '2');
INSERT INTO `badge_shop` VALUES ('4', '\r\nCA4', 'XBOX', 'I\'m a true XBOX fan.', '5');
INSERT INTO `badge_shop` VALUES ('5', '\r\nNA003', 'Noob', 'I\'m a noob friendly person!', '3');
Download links
Mirror (31/01/16)
You must be registered for see links
Last edited: