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
2020-07-10 16:46:30 +02:00
INSERT INTO ` emulator_settings ` ( ` key ` , ` value ` ) VALUES ( ' hotel.flood.mute.time ' , ' 30 ' ) ;
-- TraxManager Jukebox Limits
2020-07-10 17:03:27 +02:00
INSERT INTO ` emulator_settings ` ( ` key ` , ` value ` ) VALUES ( ' hotel.jukebox.limit.large ' , ' 20 ' ) ;
INSERT INTO ` emulator_settings ` ( ` key ` , ` value ` ) VALUES ( ' hotel.jukebox.limit.normal ' , ' 10 ' ) ;
2020-07-10 16:46:30 +02:00
2020-07-13 23:02:56 +02:00
-- Background Toner Scripter Warning
INSERT INTO ` emulator_texts ` ( ` key ` , ` value ` ) VALUES ( ' scripter.warning.item.bgtoner.permission ' , ' %username% tried to change the background toner without rights in %room% owned by %owner% ' ) ;
2020-07-10 16:46:30 +02:00
-- Table structure for room_trax
DROP TABLE IF EXISTS ` room_trax ` ;
CREATE TABLE ` room_trax ` (
` room_id ` int ( 11 ) NOT NULL ,
` trax_item_id ` int ( 11 ) NOT NULL
) ENGINE = InnoDB CHARACTER SET = armscii8 COLLATE = armscii8_general_ci ROW_FORMAT = Compact ;
-- Table structure for trax_playlist
DROP TABLE IF EXISTS ` trax_playlist ` ;
CREATE TABLE ` trax_playlist ` (
` trax_item_id ` int ( 11 ) NOT NULL ,
` item_id ` int ( 11 ) NOT NULL
) ENGINE = InnoDB CHARACTER SET = armscii8 COLLATE = armscii8_general_ci ROW_FORMAT = Compact ;