· 7 years ago · Jan 19, 2019, 10:30 PM
1DROP TABLE IF EXISTS `server_settings`;
2CREATE TABLE `server_settings` (
3 `motd` text NOT NULL,
4 `timer` int(11) NOT NULL DEFAULT '15',
5 `pixels` int(11) NOT NULL DEFAULT '15',
6 `credits` int(11) NOT NULL DEFAULT '75',
7 `enable_chatlogs` enum('0','1') NOT NULL DEFAULT '1',
8 `enable_roomlogs` enum('0','1') NOT NULL DEFAULT '1',
9 `vipclothesforhcusers` enum('1','0') NOT NULL DEFAULT '1',
10 `MaxRoomsPerUser` int(4) NOT NULL DEFAULT '50',
11 `enable_externalchatlinks` enum('disabled','blacklist','whitelist') NOT NULL DEFAULT 'disabled',
12 `enable_securesessions` enum('1','0') NOT NULL DEFAULT '1',
13 `enable_cmdlogs` enum('0','1') NOT NULL DEFAULT '1',
14 `allow_friendfurnidrops` enum('0','1') NOT NULL DEFAULT '1',
15 `enable_cmd_redeemcredits` enum('0','1') NOT NULL DEFAULT '1',
16 `points` int(11) NOT NULL DEFAULT '0',
17 `pixels_max` int(15) NOT NULL DEFAULT '0',
18 `credits_max` int(15) NOT NULL DEFAULT '0',
19 `points_max` int(15) NOT NULL DEFAULT '0',
20 `enable_antiddos` enum('0','1') NOT NULL DEFAULT '1',
21 `MaxPetsPerRoom` int(2) NOT NULL DEFAULT '15',
22 `MarketPlaceTax` int(2) NOT NULL DEFAULT '1',
23 `MaxMarketPlacePrice` int(9) NOT NULL DEFAULT '10000'
24) ENGINE=MyISAM DEFAULT CHARSET=latin1;
25
26-- ----------------------------
27-- Records of server_settings
28-- ----------------------------
29INSERT INTO `server_settings` VALUES ('Please change your motd \\nYou can find this message in your server_settings table :)', '15', '15', '75', '1', '1', '1', '50', 'disabled', '1', '1', '1', '1', '0', '0', '0', '0', '1', '15', '1', '10000');