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
[Alaska] Help & Support Thread
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="Logic" data-source="post: 424539" data-attributes="member: 12691"><p>So there's an error on your part if there are tables missing. Either manually add them or delete your database and execute a new one. Also, that wasn't a fix for the issue with the diamonds table missing, it was one for a common error you will receive in your emulator when placing furniture down in-game. However, try the below steps.</p><p></p><p>1) Keep in mind step 2 will consist of dropping the `server_rewards` & `subscriptions` tables. Backup your database if you made any changes to those 2 tables.</p><p>2) Open your database and run the following as <strong>SEPARATE</strong> queries:</p><p>[code]</p><p>DROP TABLE IF EXISTS `server_rewards`;</p><p>CREATE TABLE `server_rewards` (</p><p> `id` int(11) NOT NULL AUTO_INCREMENT,</p><p> `reward_start` int(11) NOT NULL DEFAULT '0',</p><p> `reward_end` int(11) NOT NULL DEFAULT '0',</p><p> `reward_type` enum('credits','badge','diamonds','duckets','none') NOT NULL DEFAULT 'none',</p><p> `reward_data` varchar(255) NOT NULL,</p><p> `message` varchar(255) NOT NULL,</p><p> `enabled` enum('1','0') NOT NULL DEFAULT '1',</p><p> PRIMARY KEY (`id`)</p><p>) ENGINE=InnoDB DEFAULT CHARSET=latin1;[/code]</p><p></p><p>[code]</p><p>DROP TABLE IF EXISTS `subscriptions`;</p><p>CREATE TABLE `subscriptions` (</p><p> `diamonds` int(11) NOT NULL DEFAULT '0',</p><p> `id` int(10) NOT NULL DEFAULT '0',</p><p> `name` varchar(50) NOT NULL,</p><p> `badge_code` varchar(10) NOT NULL,</p><p> `credits` int(11) NOT NULL DEFAULT '100',</p><p> `duckets` int(11) NOT NULL DEFAULT '100',</p><p> `respects` int(11) NOT NULL DEFAULT '3',</p><p> PRIMARY KEY (`id`)</p><p>) ENGINE=InnoDB DEFAULT CHARSET=latin1;[/code]</p></blockquote><p></p>
[QUOTE="Logic, post: 424539, member: 12691"] So there's an error on your part if there are tables missing. Either manually add them or delete your database and execute a new one. Also, that wasn't a fix for the issue with the diamonds table missing, it was one for a common error you will receive in your emulator when placing furniture down in-game. However, try the below steps. 1) Keep in mind step 2 will consist of dropping the `server_rewards` & `subscriptions` tables. Backup your database if you made any changes to those 2 tables. 2) Open your database and run the following as [B]SEPARATE[/B] queries: [code] DROP TABLE IF EXISTS `server_rewards`; CREATE TABLE `server_rewards` ( `id` int(11) NOT NULL AUTO_INCREMENT, `reward_start` int(11) NOT NULL DEFAULT '0', `reward_end` int(11) NOT NULL DEFAULT '0', `reward_type` enum('credits','badge','diamonds','duckets','none') NOT NULL DEFAULT 'none', `reward_data` varchar(255) NOT NULL, `message` varchar(255) NOT NULL, `enabled` enum('1','0') NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1;[/code] [code] DROP TABLE IF EXISTS `subscriptions`; CREATE TABLE `subscriptions` ( `diamonds` int(11) NOT NULL DEFAULT '0', `id` int(10) NOT NULL DEFAULT '0', `name` varchar(50) NOT NULL, `badge_code` varchar(10) NOT NULL, `credits` int(11) NOT NULL DEFAULT '100', `duckets` int(11) NOT NULL DEFAULT '100', `respects` int(11) NOT NULL DEFAULT '3', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1;[/code] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
[Alaska] Help & Support Thread
Top