Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Releases
CMS Releases
[Release] RevCMS Habbo Edit
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Lame" data-source="post: 380963" data-attributes="member: 53754"><p>Hey fuckers. I got bored and decided to just start editing containers and shit, but I ended up liking the result so I'm gonna release it.</p><p>Don't bitch if some PHP breaks; it's made for Gold Tree, but you can easily change some of the code (don't be a whiny little goob).</p><p><strong><em>Index and Reg is shit because I couldn't be bothered editing them..</em></strong></p><p><strong><em>PS: There's no Client.php; just add your own, don't be lazy..</em></strong></p><p></p><p>Index: <a href="http://image.prntscr.com/image/c21b40a24437429ca61309917924e5a2.png" target="_blank"><strong>Click</strong></a></p><p>Register: <a href="http://image.prntscr.com/image/91ec9ea0f778438093ec9648f33bfaba.png" target="_blank"><strong>Click</strong></a></p><p>Me: <strong><a href="http://image.prntscr.com/image/9761006f609245d591c8dba950b005f4.png" target="_blank">Click</a></strong></p><p>Account: <strong><a href="http://image.prntscr.com/image/f916986e578b42158ac0aba8510f7441.png" target="_blank">Click</a></strong></p><p>Community: <a href="http://image.prntscr.com/image/a36e5c261ca7467d8c24a790d4296218.png" target="_blank"><strong>Click</strong></a></p><p>Staff: <a href="http://image.prntscr.com/image/c4975e63f7794b42941d0f1770cd0dfb.png" target="_blank"><strong>Click</strong></a></p><p>News: <a href="http://image.prntscr.com/image/2974522260a44f0e92a6046ae466cf6b.png" target="_blank"><strong>Click</strong></a></p><p>Values: <a href="http://image.prntscr.com/image/0d3925f96e414864aa58f276fc536064.png" target="_blank"><strong>Click</strong></a></p><p>Store: <a href="http://image.prntscr.com/image/2288d4bd6abc4359a09ffafb52ab601f.png" target="_blank"><strong>Click</strong></a></p><p>Badge Store: <a href="http://image.prntscr.com/image/e1589a68433e4bb5a577643f0b2b7fa1.png" target="_blank"><strong>Click</strong></a></p><p></p><p>DL Link: <strong><a href="https://www.mediafire.com/?9xmxm5off976fdc" target="_blank">Click </a></strong></p><p></p><p><em>--------------------</em></p><p><em>Credit:</em></p><p><em>98% - Whoever made the Habbo Theme Originally</em></p><p><em>1% - Boon (I stole the images for the Values page <img src="/styles/default/xenforo/smilies/emojione/wink.png" class="smilie" loading="lazy" alt=";)" title="Wink ;)" data-shortname=";)" /> )</em></p><p><em>1% - Me</em></p><p><em>--------------------</em></p><p></p><p></p><p>Some Database Tables you will need for Values and Badges..</p><p></p><p>Values:</p><p>[CODE]/*</p><p>Navicat MySQL Data Transfer</p><p></p><p>Source Server : Habbo</p><p>Source Server Version : 50141</p><p>Source Host : localhost:3306</p><p>Source Database : gte</p><p></p><p>Target Server Type : MYSQL</p><p>Target Server Version : 50141</p><p>File Encoding : 65001</p><p></p><p>Date: 2016-07-27 09:42:51</p><p>*/</p><p></p><p>SET FOREIGN_KEY_CHECKS=0;</p><p></p><p>-- ----------------------------</p><p>-- Table structure for `values`</p><p>-- ----------------------------</p><p>DROP TABLE IF EXISTS `values`;</p><p>CREATE TABLE `values` (</p><p> `item_status` varchar(255) DEFAULT NULL,</p><p> `id` int(11) NOT NULL AUTO_INCREMENT,</p><p> `name` varchar(255) NOT NULL,</p><p> `price` varchar(255) NOT NULL,</p><p> `imgurl` varchar(255) NOT NULL,</p><p> `timestamp` varchar(255) NOT NULL,</p><p> PRIMARY KEY (`id`)</p><p>) ENGINE=MyISAM AUTO_INCREMENT=77 DEFAULT CHARSET=latin1;</p><p></p><p>-- ----------------------------</p><p>-- Records of values</p><p>-- ----------------------------</p><p>INSERT INTO `values` VALUES ('', '7', 'Typewriter', '2', 'typo.gif', '');</p><p>INSERT INTO `values` VALUES ('', '8', 'Petal Patch', '0.25', 'petal.gif', '');</p><p>INSERT INTO `values` VALUES (null, '9', 'Cola Machine', '1.25', 'cola.gif', '');</p><p>INSERT INTO `values` VALUES (null, '10', 'Snowglobe', '0.5', 'globe.gif', '');</p><p>INSERT INTO `values` VALUES (null, '11', 'Holiday Romance', '0.25', 'holiday.gif', '');</p><p>INSERT INTO `values` VALUES (null, '12', 'Lapland Greetings', '0.25', 'lappland.gif', '');</p><p>INSERT INTO `values` VALUES (null, '13', 'Speakers\' Corner', '1.5', 'speaker.gif', '');</p><p>INSERT INTO `values` VALUES (null, '14', 'Crusoes\' Hammock', '1', 'hammock.gif', '');</p><p>INSERT INTO `values` VALUES (null, '17', 'Blue ICM', '20', 'icm_blue.gif', '');</p><p>INSERT INTO `values` VALUES (null, '18', 'Choco ICM', '18', 'icm_brown.gif', '');</p><p>INSERT INTO `values` VALUES (null, '19', 'Golden ICM', '25', 'icm_gold.gif', '');</p><p>INSERT INTO `values` VALUES (null, '20', 'Pink ICM', '10', 'icm_pink.gif', '');</p><p>INSERT INTO `values` VALUES (null, '21', 'Red ICM', '15', 'icm_red.gif', '');</p><p>INSERT INTO `values` VALUES (null, '22', 'Purple ICM', '17', 'icm_purple.gif', '');</p><p>INSERT INTO `values` VALUES (null, '23', 'Fuchsia ICM', '5', 'icm_fuchsia.gif', '');</p><p>INSERT INTO `values` VALUES (null, '24', 'Shamrock ICM', '10', 'icm_green.gif', '');</p><p>INSERT INTO `values` VALUES (null, '25', 'Ochre ICM', '5', 'icm_ochre.gif', '');</p><p>INSERT INTO `values` VALUES (null, '26', 'Aqua ICM', '30', 'icm_aqua.gif', '');</p><p>INSERT INTO `values` VALUES (null, '27', 'Black Dragon', '3', 'dragon_black.gif', '');</p><p>INSERT INTO `values` VALUES (null, '28', 'Fire Dragon', '9', 'dragon_red.gif', '');</p><p>INSERT INTO `values` VALUES (null, '29', 'Bronze Dragon', '3', 'dragon_bronze.gif', '');</p><p>INSERT INTO `values` VALUES (null, '30', 'Jade Dragon', '6', 'dragon_jade.gif', '');</p><p>INSERT INTO `values` VALUES (null, '31', 'Golden Dragon', '12', 'dragon_gold.gif', '');</p><p>INSERT INTO `values` VALUES (null, '32', 'Sky Dragon', '2', 'dragon_sky.gif', '');</p><p>INSERT INTO `values` VALUES (null, '33', 'Blue Dragon', '6', 'dragon_blue.gif', '');</p><p>INSERT INTO `values` VALUES (null, '34', 'Forest Dragon', '8', 'dragon_green.gif', '');</p><p>INSERT INTO `values` VALUES (null, '35', 'Purple Dragon', '1', 'dragon_purple.gif', '');</p><p>INSERT INTO `values` VALUES (null, '36', 'Silver Dragon', '5', 'dragon_silver.gif', '');</p><p>INSERT INTO `values` VALUES (null, '37', 'Red Pillow', '0.2', 'pillow_red.gif', '');</p><p>INSERT INTO `values` VALUES (null, '38', 'Navy Pillow', '0.2', 'pillow_navy.gif', '');</p><p>INSERT INTO `values` VALUES (null, '39', 'Pink Pillow', '0.2', 'pillow_pink.gif', '');</p><p>INSERT INTO `values` VALUES (null, '40', 'Black Pillow', '0.2', 'pillow_black.gif', '');</p><p>INSERT INTO `values` VALUES (null, '41', 'Green Pillow', '0.2', 'pillow_green.gif', '');</p><p>INSERT INTO `values` VALUES (null, '42', 'Golden Pillow', '0.2', 'pillow_gold.gif', '');</p><p>INSERT INTO `values` VALUES (null, '43', 'Blue Pillow', '0.2', 'pillow_blue.gif', '');</p><p>INSERT INTO `values` VALUES (null, '44', 'White Pillow', '0.2', 'pillow_white.gif', '');</p><p>INSERT INTO `values` VALUES (null, '47', 'Blue Bird Bath', '0.4', 'bath_blue.gif', '');</p><p>INSERT INTO `values` VALUES (null, '48', 'Green Bird Bath', '0.4', 'bath_green.gif', '');</p><p>INSERT INTO `values` VALUES (null, '49', 'Grey Bird Bath', '0.4', 'bath_grey.gif', '');</p><p>INSERT INTO `values` VALUES (null, '50', 'Red Bird Bath', '0.4', 'bath_red.gif', '');</p><p>INSERT INTO `values` VALUES (null, '51', 'Aqua Oriental Screen', '1', 'screen_aqua.gif', '');</p><p>INSERT INTO `values` VALUES (null, '52', 'Blue Oriental Screen', '1', 'screen_blue.gif', '');</p><p>INSERT INTO `values` VALUES (null, '53', 'Green Oriental Screen', '1', 'screen_green.gif', '');</p><p>INSERT INTO `values` VALUES (null, '54', 'Grey Oriental Screen', '1', 'screen_grey.gif', '');</p><p>INSERT INTO `values` VALUES (null, '55', 'Navy Oriental Screen', '1', 'screen_navy.gif', '');</p><p>INSERT INTO `values` VALUES (null, '56', 'Pink Oriental Screen', '1', 'screen_pink.gif', '');</p><p>INSERT INTO `values` VALUES (null, '57', 'Purple Oriental Screen', '1', 'screen_purple.gif', '');</p><p>INSERT INTO `values` VALUES (null, '58', 'Red Oriental Screen', '1', 'screen_red.gif', '');</p><p>INSERT INTO `values` VALUES (null, '59', 'White Oriental Screen', '1', 'screen_white.gif', '');</p><p>INSERT INTO `values` VALUES (null, '60', 'Yellow Oriental Screen', '1', 'screen_yellow.gif', '');</p><p>INSERT INTO `values` VALUES (null, '61', 'Aqua Laser Gate', '0.2', 'laser_aqua.gif', '');</p><p>INSERT INTO `values` VALUES (null, '62', 'Black Laser Gate', '0.2', 'laser_black.gif', '');</p><p>INSERT INTO `values` VALUES (null, '63', 'Blue Laser Gate', '0.2', 'laser_blue.gif', '');</p><p>INSERT INTO `values` VALUES (null, '64', 'Green Laser Gate', '0.2', 'laser_green.gif', '');</p><p>INSERT INTO `values` VALUES (null, '65', 'Pink Laser Gate', '0.2', 'laser_pink.gif', '');</p><p>INSERT INTO `values` VALUES (null, '66', 'Purple Laser Gate', '0.2', 'laser_purple.gif', '');</p><p>INSERT INTO `values` VALUES (null, '67', 'Red Laser Gate', '0.3', 'laser_red.gif', '');</p><p>INSERT INTO `values` VALUES (null, '68', 'Violet Laser Gate', '0.2', 'laser_violet.gif', '');</p><p>INSERT INTO `values` VALUES (null, '69', 'White Laser Gate', '0.2', 'laser_white.gif', '');</p><p>INSERT INTO `values` VALUES (null, '70', 'Yellow Laser Gate', '0.3', 'laser_yellow.gif', '');</p><p>INSERT INTO `values` VALUES ('', '1', 'Throne', '1', 'throne.gif', '');</p><p>INSERT INTO `values` VALUES ('', '2', 'DJ Turntable', '1', 'deck.gif', '');</p><p>INSERT INTO `values` VALUES ('', '3', 'Dino Egg', '0.5', 'dino.gif', '');</p><p>INSERT INTO `values` VALUES ('', '4', 'Boy Holo', '3', 'hologirl.gif', '');</p><p>INSERT INTO `values` VALUES ('', '5', 'Girl Holo', '3', 'holopod.gif', '');</p><p>INSERT INTO `values` VALUES ('', '6', 'Samovar', '0.25', 'samovar.gif', '');</p><p>[/CODE]</p><p>Badges:</p><p>[CODE]/*</p><p>Navicat MySQL Data Transfer</p><p></p><p>Source Server : Habbo</p><p>Source Server Version : 50141</p><p>Source Host : localhost:3306</p><p>Source Database : gte</p><p></p><p>Target Server Type : MYSQL</p><p>Target Server Version : 50141</p><p>File Encoding : 65001</p><p></p><p>Date: 2016-07-27 09:43:01</p><p>*/</p><p></p><p>SET FOREIGN_KEY_CHECKS=0;</p><p></p><p>-- ----------------------------</p><p>-- Table structure for `badge_shop`</p><p>-- ----------------------------</p><p>DROP TABLE IF EXISTS `badge_shop`;</p><p>CREATE TABLE `badge_shop` (</p><p> `id` int(11) NOT NULL AUTO_INCREMENT,</p><p> `badge_id` varchar(255) DEFAULT NULL,</p><p> `title` varchar(255) DEFAULT NULL,</p><p> `description` varchar(255) DEFAULT NULL,</p><p> `cost` int(11) DEFAULT NULL,</p><p> PRIMARY KEY (`id`)</p><p>) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;</p><p></p><p>-- ----------------------------</p><p>-- Records of badge_shop</p><p>-- ----------------------------</p><p>INSERT INTO `badge_shop` VALUES ('1', 'GM1', 'Diamond', 'A nice looking Gem!', '2');</p><p>INSERT INTO `badge_shop` VALUES ('2', 'GM2', 'Emerald', 'A nice looking Gem!', '2');</p><p>INSERT INTO `badge_shop` VALUES ('3', 'GM3', 'Sapphire', 'A nice looking Gem!', '1');</p><p>INSERT INTO `badge_shop` VALUES ('4', 'GM4', 'Ruby', 'A nice looking Gem!', '1');</p><p>INSERT INTO `badge_shop` VALUES ('5', 'ZZZ', 'Sulake', 'A secret test badge', '1');</p><p>INSERT INTO `badge_shop` VALUES ('6', 'BOT', 'Bot', 'For people with a robotic personality', '3');</p><p>INSERT INTO `badge_shop` VALUES ('7', 'FAN', 'Fan', 'I wear this badge to show support for Flow', '3');</p><p>INSERT INTO `badge_shop` VALUES ('8', 'UK1', 'Infobus', 'Long live the Infobus!', '5');</p><p>INSERT INTO `badge_shop` VALUES ('9', 'UK006', 'Childline', 'I support the efforts of Childline', '2');</p><p>INSERT INTO `badge_shop` VALUES ('10', 'Z26', 'King', 'The royal King of Flow!', '4');</p><p>INSERT INTO `badge_shop` VALUES ('11', 'Z27', 'Queen', 'Worship me, subjects!', '4');</p><p>[/CODE]</p><p>User Tags:</p><p>[CODE]/*</p><p>Navicat MySQL Data Transfer</p><p></p><p>Source Server : Habbo</p><p>Source Server Version : 50141</p><p>Source Host : localhost:3306</p><p>Source Database : gte</p><p></p><p>Target Server Type : MYSQL</p><p>Target Server Version : 50141</p><p>File Encoding : 65001</p><p></p><p>Date: 2016-07-30 23:33:37</p><p>*/</p><p></p><p>SET FOREIGN_KEY_CHECKS=0;</p><p></p><p>-- ----------------------------</p><p>-- Table structure for `user_tags`</p><p>-- ----------------------------</p><p>DROP TABLE IF EXISTS `user_tags`;</p><p>CREATE TABLE `user_tags` (</p><p> `id` int(11) NOT NULL AUTO_INCREMENT,</p><p> `user_id` int(10) unsigned NOT NULL,</p><p> `tag` varchar(100) NOT NULL,</p><p> PRIMARY KEY (`id`),</p><p> KEY `user_id` (`user_id`) USING BTREE</p><p>) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;</p><p></p><p>-- ----------------------------</p><p>-- Records of user_tags</p><p>-- ----------------------------</p><p>INSERT INTO `user_tags` VALUES ('6', '8', 'Flowwwww!');</p><p>INSERT INTO `user_tags` VALUES ('7', '9', 'Dickhole');</p><p>[/CODE]</p></blockquote><p></p>
[QUOTE="Lame, post: 380963, member: 53754"] Hey fuckers. I got bored and decided to just start editing containers and shit, but I ended up liking the result so I'm gonna release it. Don't bitch if some PHP breaks; it's made for Gold Tree, but you can easily change some of the code (don't be a whiny little goob). [B][I]Index and Reg is shit because I couldn't be bothered editing them.. PS: There's no Client.php; just add your own, don't be lazy..[/I][/B] Index: [URL='http://image.prntscr.com/image/c21b40a24437429ca61309917924e5a2.png'][B]Click[/B][/URL] Register: [URL='http://image.prntscr.com/image/91ec9ea0f778438093ec9648f33bfaba.png'][B]Click[/B][/URL] Me: [B][URL='http://image.prntscr.com/image/9761006f609245d591c8dba950b005f4.png']Click[/URL][/B] Account: [B][URL='http://image.prntscr.com/image/f916986e578b42158ac0aba8510f7441.png']Click[/URL][/B] Community: [URL='http://image.prntscr.com/image/a36e5c261ca7467d8c24a790d4296218.png'][B]Click[/B][/URL] Staff: [URL='http://image.prntscr.com/image/c4975e63f7794b42941d0f1770cd0dfb.png'][B]Click[/B][/URL] News: [URL='http://image.prntscr.com/image/2974522260a44f0e92a6046ae466cf6b.png'][B]Click[/B][/URL] Values: [URL='http://image.prntscr.com/image/0d3925f96e414864aa58f276fc536064.png'][B]Click[/B][/URL] Store: [URL='http://image.prntscr.com/image/2288d4bd6abc4359a09ffafb52ab601f.png'][B]Click[/B][/URL] Badge Store: [URL='http://image.prntscr.com/image/e1589a68433e4bb5a577643f0b2b7fa1.png'][B]Click[/B][/URL] DL Link: [B][URL='https://www.mediafire.com/?9xmxm5off976fdc']Click [/URL][/B] [I]-------------------- Credit: 98% - Whoever made the Habbo Theme Originally 1% - Boon (I stole the images for the Values page ;) ) 1% - Me --------------------[/I] Some Database Tables you will need for Values and Badges.. Values: [CODE]/* Navicat MySQL Data Transfer Source Server : Habbo Source Server Version : 50141 Source Host : localhost:3306 Source Database : gte Target Server Type : MYSQL Target Server Version : 50141 File Encoding : 65001 Date: 2016-07-27 09:42:51 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for `values` -- ---------------------------- DROP TABLE IF EXISTS `values`; CREATE TABLE `values` ( `item_status` varchar(255) DEFAULT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `price` varchar(255) NOT NULL, `imgurl` varchar(255) NOT NULL, `timestamp` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=77 DEFAULT CHARSET=latin1; -- ---------------------------- -- Records of values -- ---------------------------- INSERT INTO `values` VALUES ('', '7', 'Typewriter', '2', 'typo.gif', ''); INSERT INTO `values` VALUES ('', '8', 'Petal Patch', '0.25', 'petal.gif', ''); INSERT INTO `values` VALUES (null, '9', 'Cola Machine', '1.25', 'cola.gif', ''); INSERT INTO `values` VALUES (null, '10', 'Snowglobe', '0.5', 'globe.gif', ''); INSERT INTO `values` VALUES (null, '11', 'Holiday Romance', '0.25', 'holiday.gif', ''); INSERT INTO `values` VALUES (null, '12', 'Lapland Greetings', '0.25', 'lappland.gif', ''); INSERT INTO `values` VALUES (null, '13', 'Speakers\' Corner', '1.5', 'speaker.gif', ''); INSERT INTO `values` VALUES (null, '14', 'Crusoes\' Hammock', '1', 'hammock.gif', ''); INSERT INTO `values` VALUES (null, '17', 'Blue ICM', '20', 'icm_blue.gif', ''); INSERT INTO `values` VALUES (null, '18', 'Choco ICM', '18', 'icm_brown.gif', ''); INSERT INTO `values` VALUES (null, '19', 'Golden ICM', '25', 'icm_gold.gif', ''); INSERT INTO `values` VALUES (null, '20', 'Pink ICM', '10', 'icm_pink.gif', ''); INSERT INTO `values` VALUES (null, '21', 'Red ICM', '15', 'icm_red.gif', ''); INSERT INTO `values` VALUES (null, '22', 'Purple ICM', '17', 'icm_purple.gif', ''); INSERT INTO `values` VALUES (null, '23', 'Fuchsia ICM', '5', 'icm_fuchsia.gif', ''); INSERT INTO `values` VALUES (null, '24', 'Shamrock ICM', '10', 'icm_green.gif', ''); INSERT INTO `values` VALUES (null, '25', 'Ochre ICM', '5', 'icm_ochre.gif', ''); INSERT INTO `values` VALUES (null, '26', 'Aqua ICM', '30', 'icm_aqua.gif', ''); INSERT INTO `values` VALUES (null, '27', 'Black Dragon', '3', 'dragon_black.gif', ''); INSERT INTO `values` VALUES (null, '28', 'Fire Dragon', '9', 'dragon_red.gif', ''); INSERT INTO `values` VALUES (null, '29', 'Bronze Dragon', '3', 'dragon_bronze.gif', ''); INSERT INTO `values` VALUES (null, '30', 'Jade Dragon', '6', 'dragon_jade.gif', ''); INSERT INTO `values` VALUES (null, '31', 'Golden Dragon', '12', 'dragon_gold.gif', ''); INSERT INTO `values` VALUES (null, '32', 'Sky Dragon', '2', 'dragon_sky.gif', ''); INSERT INTO `values` VALUES (null, '33', 'Blue Dragon', '6', 'dragon_blue.gif', ''); INSERT INTO `values` VALUES (null, '34', 'Forest Dragon', '8', 'dragon_green.gif', ''); INSERT INTO `values` VALUES (null, '35', 'Purple Dragon', '1', 'dragon_purple.gif', ''); INSERT INTO `values` VALUES (null, '36', 'Silver Dragon', '5', 'dragon_silver.gif', ''); INSERT INTO `values` VALUES (null, '37', 'Red Pillow', '0.2', 'pillow_red.gif', ''); INSERT INTO `values` VALUES (null, '38', 'Navy Pillow', '0.2', 'pillow_navy.gif', ''); INSERT INTO `values` VALUES (null, '39', 'Pink Pillow', '0.2', 'pillow_pink.gif', ''); INSERT INTO `values` VALUES (null, '40', 'Black Pillow', '0.2', 'pillow_black.gif', ''); INSERT INTO `values` VALUES (null, '41', 'Green Pillow', '0.2', 'pillow_green.gif', ''); INSERT INTO `values` VALUES (null, '42', 'Golden Pillow', '0.2', 'pillow_gold.gif', ''); INSERT INTO `values` VALUES (null, '43', 'Blue Pillow', '0.2', 'pillow_blue.gif', ''); INSERT INTO `values` VALUES (null, '44', 'White Pillow', '0.2', 'pillow_white.gif', ''); INSERT INTO `values` VALUES (null, '47', 'Blue Bird Bath', '0.4', 'bath_blue.gif', ''); INSERT INTO `values` VALUES (null, '48', 'Green Bird Bath', '0.4', 'bath_green.gif', ''); INSERT INTO `values` VALUES (null, '49', 'Grey Bird Bath', '0.4', 'bath_grey.gif', ''); INSERT INTO `values` VALUES (null, '50', 'Red Bird Bath', '0.4', 'bath_red.gif', ''); INSERT INTO `values` VALUES (null, '51', 'Aqua Oriental Screen', '1', 'screen_aqua.gif', ''); INSERT INTO `values` VALUES (null, '52', 'Blue Oriental Screen', '1', 'screen_blue.gif', ''); INSERT INTO `values` VALUES (null, '53', 'Green Oriental Screen', '1', 'screen_green.gif', ''); INSERT INTO `values` VALUES (null, '54', 'Grey Oriental Screen', '1', 'screen_grey.gif', ''); INSERT INTO `values` VALUES (null, '55', 'Navy Oriental Screen', '1', 'screen_navy.gif', ''); INSERT INTO `values` VALUES (null, '56', 'Pink Oriental Screen', '1', 'screen_pink.gif', ''); INSERT INTO `values` VALUES (null, '57', 'Purple Oriental Screen', '1', 'screen_purple.gif', ''); INSERT INTO `values` VALUES (null, '58', 'Red Oriental Screen', '1', 'screen_red.gif', ''); INSERT INTO `values` VALUES (null, '59', 'White Oriental Screen', '1', 'screen_white.gif', ''); INSERT INTO `values` VALUES (null, '60', 'Yellow Oriental Screen', '1', 'screen_yellow.gif', ''); INSERT INTO `values` VALUES (null, '61', 'Aqua Laser Gate', '0.2', 'laser_aqua.gif', ''); INSERT INTO `values` VALUES (null, '62', 'Black Laser Gate', '0.2', 'laser_black.gif', ''); INSERT INTO `values` VALUES (null, '63', 'Blue Laser Gate', '0.2', 'laser_blue.gif', ''); INSERT INTO `values` VALUES (null, '64', 'Green Laser Gate', '0.2', 'laser_green.gif', ''); INSERT INTO `values` VALUES (null, '65', 'Pink Laser Gate', '0.2', 'laser_pink.gif', ''); INSERT INTO `values` VALUES (null, '66', 'Purple Laser Gate', '0.2', 'laser_purple.gif', ''); INSERT INTO `values` VALUES (null, '67', 'Red Laser Gate', '0.3', 'laser_red.gif', ''); INSERT INTO `values` VALUES (null, '68', 'Violet Laser Gate', '0.2', 'laser_violet.gif', ''); INSERT INTO `values` VALUES (null, '69', 'White Laser Gate', '0.2', 'laser_white.gif', ''); INSERT INTO `values` VALUES (null, '70', 'Yellow Laser Gate', '0.3', 'laser_yellow.gif', ''); INSERT INTO `values` VALUES ('', '1', 'Throne', '1', 'throne.gif', ''); INSERT INTO `values` VALUES ('', '2', 'DJ Turntable', '1', 'deck.gif', ''); INSERT INTO `values` VALUES ('', '3', 'Dino Egg', '0.5', 'dino.gif', ''); INSERT INTO `values` VALUES ('', '4', 'Boy Holo', '3', 'hologirl.gif', ''); INSERT INTO `values` VALUES ('', '5', 'Girl Holo', '3', 'holopod.gif', ''); INSERT INTO `values` VALUES ('', '6', 'Samovar', '0.25', 'samovar.gif', ''); [/CODE] Badges: [CODE]/* Navicat MySQL Data Transfer Source Server : Habbo Source Server Version : 50141 Source Host : localhost:3306 Source Database : gte Target Server Type : MYSQL Target Server Version : 50141 File Encoding : 65001 Date: 2016-07-27 09:43:01 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for `badge_shop` -- ---------------------------- 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=12 DEFAULT CHARSET=latin1; -- ---------------------------- -- Records of badge_shop -- ---------------------------- INSERT INTO `badge_shop` VALUES ('1', 'GM1', 'Diamond', 'A nice looking Gem!', '2'); INSERT INTO `badge_shop` VALUES ('2', 'GM2', 'Emerald', 'A nice looking Gem!', '2'); INSERT INTO `badge_shop` VALUES ('3', 'GM3', 'Sapphire', 'A nice looking Gem!', '1'); INSERT INTO `badge_shop` VALUES ('4', 'GM4', 'Ruby', 'A nice looking Gem!', '1'); INSERT INTO `badge_shop` VALUES ('5', 'ZZZ', 'Sulake', 'A secret test badge', '1'); INSERT INTO `badge_shop` VALUES ('6', 'BOT', 'Bot', 'For people with a robotic personality', '3'); INSERT INTO `badge_shop` VALUES ('7', 'FAN', 'Fan', 'I wear this badge to show support for Flow', '3'); INSERT INTO `badge_shop` VALUES ('8', 'UK1', 'Infobus', 'Long live the Infobus!', '5'); INSERT INTO `badge_shop` VALUES ('9', 'UK006', 'Childline', 'I support the efforts of Childline', '2'); INSERT INTO `badge_shop` VALUES ('10', 'Z26', 'King', 'The royal King of Flow!', '4'); INSERT INTO `badge_shop` VALUES ('11', 'Z27', 'Queen', 'Worship me, subjects!', '4'); [/CODE] User Tags: [CODE]/* Navicat MySQL Data Transfer Source Server : Habbo Source Server Version : 50141 Source Host : localhost:3306 Source Database : gte Target Server Type : MYSQL Target Server Version : 50141 File Encoding : 65001 Date: 2016-07-30 23:33:37 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for `user_tags` -- ---------------------------- DROP TABLE IF EXISTS `user_tags`; CREATE TABLE `user_tags` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `tag` varchar(100) NOT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`) USING BTREE ) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1; -- ---------------------------- -- Records of user_tags -- ---------------------------- INSERT INTO `user_tags` VALUES ('6', '8', 'Flowwwww!'); INSERT INTO `user_tags` VALUES ('7', '9', 'Dickhole'); [/CODE] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Releases
CMS Releases
[Release] RevCMS Habbo Edit
Top