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.');
|
|
|
|
INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('hotel.allow.ignore.staffs', '1');
|