2021-09-01 17:36:32 +02:00
|
|
|
INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('wired.place.under', '0');
|
|
|
|
INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('wired.custom.enabled', '0');
|
|
|
|
|
2021-12-20 21:13:55 +01:00
|
|
|
INSERT INTO `emulator_texts` (`key`, `value`) VALUES ('commands.error.cmd_stalk.forgot_username', 'Specify the username of the Habbo you want to follow!');
|
|
|
|
|
|
|
|
-- Enable or Disable TTY in console (Default is enabled)
|
2021-12-20 21:24:18 +01:00
|
|
|
INSERT INTO `emulator_settings` (`key`, `value`) VALUES ('console.mode', '1');
|
2022-03-03 00:08:34 +01:00
|
|
|
|
2022-03-02 23:13:56 +01:00
|
|
|
-- Youtube Api v3 key to YoutubeManager
|
|
|
|
INSERT INTO `emulator_settings` (`key`, `value`) VALUES ('youtube.apikey', '');
|
2022-03-03 00:39:34 +01:00
|
|
|
|
2022-03-17 12:51:43 +01:00
|
|
|
INSERT INTO `emulator_settings` (`key`, `value`) VALUES ('hotel.gifts.length.max', '300');
|
2022-03-19 19:26:10 +01:00
|
|
|
|
2022-03-19 20:34:21 +01:00
|
|
|
-- Add friendship categories table
|
|
|
|
CREATE TABLE `messenger_categories` (
|
|
|
|
`id` int NOT NULL AUTO_INCREMENT,
|
|
|
|
`name` varchar(25) NOT NULL,
|
|
|
|
`user_id` int NOT NULL,
|
|
|
|
UNIQUE KEY `identifier` (`id`)
|
|
|
|
);
|
|
|
|
|
|
|
|
-- Set an ID (int) from category list items
|
2022-03-21 19:51:52 +01:00
|
|
|
ALTER TABLE messenger_friendships ADD category int NOT NULL DEFAULT '0' AFTER friends_since;
|
|
|
|
|
2022-03-21 23:22:49 +01:00
|
|
|
|
2022-03-21 23:16:31 +01:00
|
|
|
-- ----------------------------
|
2022-03-03 00:08:34 +01:00
|
|
|
-- Table structure for calendar_campaigns
|
|
|
|
-- ----------------------------
|
|
|
|
DROP TABLE IF EXISTS `calendar_campaigns`;
|
|
|
|
CREATE TABLE `calendar_campaigns` (
|
2022-03-21 23:16:31 +01:00
|
|
|
`id` int NOT NULL AUTO_INCREMENT,
|
|
|
|
`name` varchar(255) NOT NULL DEFAULT '',
|
|
|
|
`image` varchar(255) NOT NULL DEFAULT '',
|
|
|
|
`start_timestamp` int NOT NULL DEFAULT '0',
|
|
|
|
`total_days` int NOT NULL DEFAULT '30',
|
|
|
|
`lock_expired` enum('1','0') NOT NULL DEFAULT '1',
|
|
|
|
`enabled` enum('1','0') NOT NULL DEFAULT '1',
|
|
|
|
UNIQUE KEY `id` (`id`)
|
2022-03-03 00:08:34 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
-- Table structure for calendar_rewards
|
|
|
|
-- ----------------------------
|
|
|
|
DROP TABLE IF EXISTS `calendar_rewards`;
|
|
|
|
CREATE TABLE `calendar_rewards` (
|
2022-03-21 23:16:31 +01:00
|
|
|
`id` int NOT NULL AUTO_INCREMENT,
|
|
|
|
`campaign_id` int NOT NULL DEFAULT '0',
|
|
|
|
`product_name` varchar(128) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
|
|
|
|
`custom_image` varchar(128) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
|
|
|
|
`credits` int NOT NULL DEFAULT '0',
|
|
|
|
`pixels` int NOT NULL DEFAULT '0',
|
|
|
|
`points` int NOT NULL DEFAULT '0',
|
|
|
|
`points_type` int NOT NULL DEFAULT '0',
|
|
|
|
`badge` varchar(25) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '',
|
|
|
|
`item_id` int NOT NULL DEFAULT '0',
|
|
|
|
`subscription_type` varchar(128) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT '',
|
|
|
|
`subscription_days` int NOT NULL DEFAULT '0',
|
|
|
|
PRIMARY KEY (`id`) USING BTREE
|
|
|
|
);
|
|
|
|
|
|
|
|
-- ----------------------------
|
|
|
|
-- Table structure for calendar_rewards_claimed
|
|
|
|
-- ----------------------------
|
|
|
|
DROP TABLE IF EXISTS `calendar_rewards_claimed`;
|
|
|
|
CREATE TABLE `calendar_rewards_claimed` (
|
|
|
|
`user_id` int NOT NULL,
|
|
|
|
`campaign_id` int NOT NULL DEFAULT '0',
|
|
|
|
`day` int NOT NULL,
|
|
|
|
`reward_id` int NOT NULL,
|
|
|
|
`timestamp` int NOT NULL
|
2022-03-03 00:08:34 +01:00
|
|
|
);
|
2022-03-03 00:39:34 +01:00
|
|
|
|
2022-03-03 00:08:34 +01:00
|
|
|
INSERT INTO `emulator_settings` (`key`, `value`) VALUES ('hotel.calendar.default', 'test');
|
|
|
|
INSERT INTO `emulator_settings` (`key`, `value`) VALUES ('hotel.calendar.pixels.hc_modifier', '2.0');
|
|
|
|
|
|
|
|
-- Calendar force open
|
|
|
|
ALTER TABLE `permissions` ADD COLUMN `acc_calendar_force` enum('0','1') NULL DEFAULT '0';
|
|
|
|
|
|
|
|
-- UpdateCalendar command.
|
|
|
|
ALTER TABLE `permissions` ADD `cmd_update_calendar` ENUM('0', '1') NOT NULL DEFAULT '0';
|
|
|
|
INSERT INTO `emulator_texts` (`key`, `value`) VALUES ('commands.description.cmd_update_calendar', ':update_calendar'), ('commands.keys.cmd_update_calendar', 'update_calendar');
|
2022-03-03 00:39:34 +01:00
|
|
|
INSERT INTO `emulator_texts` (`key`, `value`) VALUES ('commands.success.cmd_update_calendar', 'Calendar updated successfully!');
|
2022-03-23 09:15:25 +01:00
|
|
|
|
|
|
|
-- add moodlight configuration
|
|
|
|
INSERT INTO `emulator_settings` (`key`, `value`) VALUES ('moodlight.color_check.enabled', '1');
|