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 Q&A
Problem with my Character!
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="Ghost" data-source="post: 458983" data-attributes="member: 18103"><p>The tables `server_status` doesn't exist nor does `catalog_marketplace_data`..</p><p></p><p>Run these queries</p><p></p><p>[CODE]-- ----------------------------</p><p>-- Table structure for server_status</p><p>-- ----------------------------</p><p>DROP TABLE IF EXISTS `server_status`;</p><p>CREATE TABLE `server_status` (</p><p> `users_online` int(11) NOT NULL DEFAULT 0,</p><p> `loaded_rooms` int(11) NOT NULL DEFAULT 0,</p><p> `environment_status` int(11) NOT NULL DEFAULT 0,</p><p> UNIQUE INDEX `users_online`(`users_online`) USING BTREE</p><p>) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic;</p><p></p><p>-- ----------------------------</p><p>-- Records of server_status</p><p>-- ----------------------------</p><p>INSERT INTO `server_status` VALUES (0, 0, 1);</p><p></p><p>SET FOREIGN_KEY_CHECKS = 1;</p><p>[/CODE]</p><p></p><p>[CODE]-- ----------------------------</p><p>-- Table structure for catalog_marketplace_data</p><p>-- ----------------------------</p><p>DROP TABLE IF EXISTS `catalog_marketplace_data`;</p><p>CREATE TABLE `catalog_marketplace_data` (</p><p> `id` int(12) NOT NULL AUTO_INCREMENT,</p><p> `sprite` int(7) NOT NULL,</p><p> `sold` int(7) NOT NULL DEFAULT 0,</p><p> `avgprice` int(9) NOT NULL DEFAULT 0,</p><p> PRIMARY KEY (`id`) USING BTREE</p><p>) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;</p><p></p><p>-- ----------------------------</p><p>-- Records of catalog_marketplace_data</p><p>-- ----------------------------</p><p></p><p>SET FOREIGN_KEY_CHECKS = 1;</p><p>[/CODE]</p></blockquote><p></p>
[QUOTE="Ghost, post: 458983, member: 18103"] The tables `server_status` doesn't exist nor does `catalog_marketplace_data`.. Run these queries [CODE]-- ---------------------------- -- Table structure for server_status -- ---------------------------- DROP TABLE IF EXISTS `server_status`; CREATE TABLE `server_status` ( `users_online` int(11) NOT NULL DEFAULT 0, `loaded_rooms` int(11) NOT NULL DEFAULT 0, `environment_status` int(11) NOT NULL DEFAULT 0, UNIQUE INDEX `users_online`(`users_online`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of server_status -- ---------------------------- INSERT INTO `server_status` VALUES (0, 0, 1); SET FOREIGN_KEY_CHECKS = 1; [/CODE] [CODE]-- ---------------------------- -- Table structure for catalog_marketplace_data -- ---------------------------- DROP TABLE IF EXISTS `catalog_marketplace_data`; CREATE TABLE `catalog_marketplace_data` ( `id` int(12) NOT NULL AUTO_INCREMENT, `sprite` int(7) NOT NULL, `sold` int(7) NOT NULL DEFAULT 0, `avgprice` int(9) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; -- ---------------------------- -- Records of catalog_marketplace_data -- ---------------------------- SET FOREIGN_KEY_CHECKS = 1; [/CODE] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
Problem with my Character!
Top