2020-06-03 03:17:32 +02:00
|
|
|
-- Hide email from specific ranks.
|
2020-06-03 02:53:10 +02:00
|
|
|
ALTER TABLE `permissions` ADD `acc_hide_mail` ENUM('0', '1') NOT NULL DEFAULT '0' AFTER `acc_hide_ip`;
|
|
|
|
|
2020-06-03 03:17:32 +02:00
|
|
|
-- Flood with rights.
|
|
|
|
INSERT INTO `emulator_settings` (`key`, `value`) VALUES ('flood.with.rights', '0');
|
|
|
|
|
|
|
|
-- Softkick command.
|
2020-06-03 03:25:06 +02:00
|
|
|
ALTER TABLE `permissions` ADD `cmd_softkick` ENUM('0', '1') NOT NULL DEFAULT '0' AFTER `cmd_kickall`;
|
2020-06-03 03:17:32 +02:00
|
|
|
INSERT INTO `emulator_texts` (`key`, `value`) VALUES ('commands.keys.cmd_softkick', 'softkick');
|
|
|
|
INSERT INTO `emulator_texts` (`key`, `value`) VALUES ('commands.error.cmd_softkick_not_found', '%user% not found');
|
2020-05-19 14:26:45 +02:00
|
|
|
INSERT INTO `emulator_texts` (`key`, `value`) VALUES ('commands.error.cmd_softkick_error_self', 'You can not softkick yourself!');
|
|
|
|
|
|
|
|
-- Rank ignoring
|
2020-06-03 04:26:07 +02:00
|
|
|
INSERT INTO `emulator_texts` (`key`, `value`) VALUES ('generic.error.ignore_higher_rank', 'You can\'t ignore this user.');
|
2020-06-04 15:23:19 +02:00
|
|
|
INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('hotel.allow.ignore.staffs', '1');
|
|
|
|
|
2020-06-04 22:55:38 +02:00
|
|
|
-- Inventory Limiting
|
|
|
|
INSERT INTO `emulator_texts`(`key`, `value`) VALUES ('error.bots.max.inventory', 'You can\'t buy or pickup anymore bots until you place some, the maximum amount of bots you are allowed is %amount%.');
|
|
|
|
|
|
|
|
UPDATE `emulator_texts` SET `value` = 'You\'ve reached the maximum amount of pets in your inventory! The Limit is %amount%!' WHERE `key` = 'error.pets.max.inventory';
|
2020-06-07 02:42:54 +02:00
|
|
|
|
|
|
|
-- Tradelock counter
|
2020-06-07 15:19:05 +02:00
|
|
|
ALTER TABLE `users_settings` ADD `tradelock_amount` INT(11) NOT NULL DEFAULT '0' AFTER `helper_level`;
|
|
|
|
|
|
|
|
-- Gift wrapping configuration
|
|
|
|
INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('hotel.gifts.box_types', '0,1,2,3,4,5,6,8');
|
|
|
|
INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('hotel.gifts.ribbon_types', '0,1,2,3,4,5,6,7,8,9,10');
|
2020-06-12 20:53:40 +02:00
|
|
|
|
|
|
|
-- Configurable mute time
|
|
|
|
INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('hotel.flood.mute.time', '30');
|