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
emu help
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="KROKET14" data-source="post: 403433" data-attributes="member: 53797"><p>[SPOILER="SQL"]</p><p>/*</p><p>Navicat MySQL Data Transfer</p><p></p><p>Source Server : localhost_3306</p><p>Source Server Version : 50505</p><p>Source Host : localhost:3306</p><p>Source Database : simpleserver</p><p></p><p>Target Server Type : MYSQL</p><p>Target Server Version : 50505</p><p>File Encoding : 65001</p><p></p><p>Date: 2017-03-11 00:55:10</p><p>*/</p><p></p><p>SET FOREIGN_KEY_CHECKS=0;</p><p></p><p>-- ----------------------------</p><p>-- Table structure for server_settings</p><p>-- ----------------------------</p><p>DROP TABLE IF EXISTS `server_settings`;</p><p>CREATE TABLE `server_settings` (</p><p> `key` varchar(255) NOT NULL DEFAULT 'server.variable',</p><p> `value` text NOT NULL,</p><p> `description` text NOT NULL,</p><p> PRIMARY KEY (`key`)</p><p>) ENGINE=InnoDB DEFAULT CHARSET=latin1;</p><p></p><p>-- ----------------------------</p><p>-- Records of server_settings</p><p>-- ----------------------------</p><p>INSERT INTO `server_settings` VALUES ('catalog.enabled', '1', 'If set to 0 the catalog will be disabled.');</p><p>INSERT INTO `server_settings` VALUES ('catalog.group.purchase.cost', '150', 'How much a group costs to purchase.');</p><p>INSERT INTO `server_settings` VALUES ('forum.post_message.score', '2', 'The amount of score given to a group forum for each message posted.');</p><p>INSERT INTO `server_settings` VALUES ('forum.thread_message.score', '2', 'The amount of score given to a group forum for each thread posted.');</p><p>INSERT INTO `server_settings` VALUES ('group.delete.member.limit', '500', 'If the group has more members than this value allows, it cannot be deleted.');</p><p>INSERT INTO `server_settings` VALUES ('messenger.buddy_limit', '5000', 'The amount of friends a user can have.');</p><p>INSERT INTO `server_settings` VALUES ('room.chat.filter.banned_phrases.chances', '6', 'The amount of banned/filtered words a user can say before being banned.');</p><p>INSERT INTO `server_settings` VALUES ('room.item.exchangeables.enabled', '1', 'If this is set to 1, a user can exchange exchangeable items into credits.');</p><p>INSERT INTO `server_settings` VALUES ('room.item.gifts.enabled', '1', 'Disables the ability to give gifts or open them, if set to 0.');</p><p>INSERT INTO `server_settings` VALUES ('room.item.placement_limit', '7500', 'How many items a room can hold.');</p><p>INSERT INTO `server_settings` VALUES ('room.pets.placement_limit', '25', 'How many pets a room can hold.');</p><p>INSERT INTO `server_settings` VALUES ('room.promotion.lifespan', '120', 'The lifespan of a room promotion.');</p><p>INSERT INTO `server_settings` VALUES ('trading.auto_exchange_redeemables', '0', 'When enabled credits that are traded will automatically be redeemed.');</p><p>INSERT INTO `server_settings` VALUES ('user.currency_scheduler.credit_reward', '100', 'The amount of credits a user will recieve every x minutes');</p><p>INSERT INTO `server_settings` VALUES ('user.currency_scheduler.ducket_reward', '100', 'The amount of pixels a user will recieve every x minutes');</p><p>INSERT INTO `server_settings` VALUES ('user.currency_scheduler.tick', '15', 'The time a user will have to wait for Credits/Pixels update in minutes');</p><p>INSERT INTO `server_settings` VALUES ('user.login.message', 'Welkom op test', '');</p><p>INSERT INTO `server_settings` VALUES ('user.login.message.enabled', '1', 'If this is enabled, a message from the server_locale table will be given to the user.');</p><p>[/SPOILER]</p><p>This is for Plus Emulator last version.</p></blockquote><p></p>
[QUOTE="KROKET14, post: 403433, member: 53797"] [SPOILER="SQL"] /* Navicat MySQL Data Transfer Source Server : localhost_3306 Source Server Version : 50505 Source Host : localhost:3306 Source Database : simpleserver Target Server Type : MYSQL Target Server Version : 50505 File Encoding : 65001 Date: 2017-03-11 00:55:10 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for server_settings -- ---------------------------- DROP TABLE IF EXISTS `server_settings`; CREATE TABLE `server_settings` ( `key` varchar(255) NOT NULL DEFAULT 'server.variable', `value` text NOT NULL, `description` text NOT NULL, PRIMARY KEY (`key`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- ---------------------------- -- Records of server_settings -- ---------------------------- INSERT INTO `server_settings` VALUES ('catalog.enabled', '1', 'If set to 0 the catalog will be disabled.'); INSERT INTO `server_settings` VALUES ('catalog.group.purchase.cost', '150', 'How much a group costs to purchase.'); INSERT INTO `server_settings` VALUES ('forum.post_message.score', '2', 'The amount of score given to a group forum for each message posted.'); INSERT INTO `server_settings` VALUES ('forum.thread_message.score', '2', 'The amount of score given to a group forum for each thread posted.'); INSERT INTO `server_settings` VALUES ('group.delete.member.limit', '500', 'If the group has more members than this value allows, it cannot be deleted.'); INSERT INTO `server_settings` VALUES ('messenger.buddy_limit', '5000', 'The amount of friends a user can have.'); INSERT INTO `server_settings` VALUES ('room.chat.filter.banned_phrases.chances', '6', 'The amount of banned/filtered words a user can say before being banned.'); INSERT INTO `server_settings` VALUES ('room.item.exchangeables.enabled', '1', 'If this is set to 1, a user can exchange exchangeable items into credits.'); INSERT INTO `server_settings` VALUES ('room.item.gifts.enabled', '1', 'Disables the ability to give gifts or open them, if set to 0.'); INSERT INTO `server_settings` VALUES ('room.item.placement_limit', '7500', 'How many items a room can hold.'); INSERT INTO `server_settings` VALUES ('room.pets.placement_limit', '25', 'How many pets a room can hold.'); INSERT INTO `server_settings` VALUES ('room.promotion.lifespan', '120', 'The lifespan of a room promotion.'); INSERT INTO `server_settings` VALUES ('trading.auto_exchange_redeemables', '0', 'When enabled credits that are traded will automatically be redeemed.'); INSERT INTO `server_settings` VALUES ('user.currency_scheduler.credit_reward', '100', 'The amount of credits a user will recieve every x minutes'); INSERT INTO `server_settings` VALUES ('user.currency_scheduler.ducket_reward', '100', 'The amount of pixels a user will recieve every x minutes'); INSERT INTO `server_settings` VALUES ('user.currency_scheduler.tick', '15', 'The time a user will have to wait for Credits/Pixels update in minutes'); INSERT INTO `server_settings` VALUES ('user.login.message', 'Welkom op test', ''); INSERT INTO `server_settings` VALUES ('user.login.message.enabled', '1', 'If this is enabled, a message from the server_locale table will be given to the user.'); [/SPOILER] This is for Plus Emulator last version. [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
emu help
Top