· 8 years ago · Mar 17, 2018, 02:56 PM
1-- ----------------------------
2-- Table structure for `server_locale`
3-- ----------------------------
4DROP TABLE IF EXISTS `server_locale`;
5CREATE TABLE `server_locale` (
6`key` varchar(255) NOT NULL,
7`value` text,
8PRIMARY KEY (`key`)
9) ENGINE=InnoDB DEFAULT CHARSET=latin1;
10
11-- ----------------------------
12-- Records of server_locale
13-- ----------------------------
14INSERT INTO `server_locale` VALUES ('moderation.kick.disallowed', 'You cannot kick this user!');
15INSERT INTO `server_locale` VALUES ('room.creation.model.not_found', 'Oops, that room model was not found.');
16INSERT INTO `server_locale` VALUES ('room.creation.name.too_short', 'Sorry, that room name is too short!');
17INSERT INTO `server_locale` VALUES ('room.item.already_placed', 'That item has already been placed, reload the room!');
18INSERT INTO `server_locale` VALUES ('room.rights.user.has_rights', 'Oops, that user already has room rights!');
19INSERT INTO `server_locale` VALUES ('server.console.alert', 'Message from server administrator:');
20INSERT INTO `server_locale` VALUES ('server.shutdown.message', 'The server is shutting down.');
21INSERT INTO `server_locale` VALUES ('user.login.message', 'Welcome to the hotel.');
22INSERT INTO `server_locale` VALUES ('user.not_found', 'Oops, this user could not be found!');
23
24-- ----------------------------
25-- Table structure for `server_settings`
26-- ----------------------------
27DROP TABLE IF EXISTS `server_settings`;
28CREATE TABLE `server_settings` (
29`key` varchar(255) NOT NULL DEFAULT 'server.variable',
30`value` text NOT NULL,
31`description` text NOT NULL,
32PRIMARY KEY (`key`)
33) ENGINE=InnoDB DEFAULT CHARSET=latin1;
34
35-- ----------------------------
36-- Records of server_settings
37-- ----------------------------
38INSERT INTO `server_settings` VALUES ('catalog.enabled', '1', 'If set to 0 the catalog will be disabled.');
39INSERT INTO `server_settings` VALUES ('catalog.group.purchase.cost', '150', 'How much a group costs to purchase.');
40INSERT INTO `server_settings` VALUES ('group.delete.member.limit', '500', 'If the group has more members than this value allows, it cannot be deleted.');
41INSERT INTO `server_settings` VALUES ('messenger.buddy_limit', '5000', 'The amount of friends a user can have.');
42INSERT INTO `server_settings` VALUES ('room.chat.filter.banned_phrases.chances', '6', 'The amount of banned/filtered words a user can say before being banned.');
43INSERT INTO `server_settings` VALUES ('room.item.exchangeables.enabled', '1', 'If this is set to 1, a user can exchange exchangeable items into credits.');
44INSERT INTO `server_settings` VALUES ('room.item.gifts.enabled', '1', 'Disables the ability to give gifts or open them, if set to 0.');
45INSERT INTO `server_settings` VALUES ('room.item.placement_limit', '7500', 'How many items a room can hold.');
46INSERT INTO `server_settings` VALUES ('room.pets.placement_limit', '25', 'How many pets a room can hold.');
47INSERT INTO `server_settings` VALUES ('room.promotion.lifespan', '120', 'The lifespan of a room promotion.');
48INSERT INTO `server_settings` VALUES ('trading.auto_exchange_redeemables', '0', 'When enabled credits that are traded will automatically be redeemed.');
49INSERT INTO `server_settings` VALUES ('user.currency_scheduler.credit_reward', '100', 'The amount of credits a user will recieve every x minutes');
50INSERT INTO `server_settings` VALUES ('user.currency_scheduler.ducket_reward', '100', 'The amount of pixels a user will recieve every x minutes');
51INSERT INTO `server_settings` VALUES ('user.currency_scheduler.tick', '15', 'The time a user will have to wait for Credits/Pixels update in minutes');
52INSERT INTO `server_settings` VALUES ('user.login.message.enabled', '0', 'If this is enabled, a message from the server_locale table will be given to the user.');