You've already forked Arcturus-Morningstar-Extended
mirror of
https://github.com/duckietm/Arcturus-Morningstar-Extended.git
synced 2026-06-19 23:16:19 +00:00
15 lines
878 B
SQL
15 lines
878 B
SQL
ALTER TABLE `permissions` ADD COLUMN `cmd_update_chat_bubbles` ENUM('0','1') NOT NULL DEFAULT '0';
|
|
|
|
--New table for custom chat bubbles
|
|
CREATE TABLE chat_bubbles (
|
|
type INT(11) PRIMARY KEY AUTO_INCREMENT COMMENT "Only 46 and higher will work",
|
|
name VARCHAR(255) NOT NULL DEFAULT '',
|
|
permission VARCHAR(255) NOT NULL DEFAULT '',
|
|
overridable BOOLEAN NOT NULL DEFAULT TRUE,
|
|
triggers_talking_furniture BOOLEAN NOT NULL DEFAULT FALSE
|
|
);
|
|
|
|
--New texts for update chat bubbles command
|
|
INSERT INTO `emulator_texts` (`key`, `value`) VALUES ('commands.keys.cmd_update_chat_bubbles', 'update_chat_bubbles');
|
|
INSERT INTO `emulator_texts` (`key`, `value`) VALUES ('commands.success.cmd_update_chat_bubbles', 'Successfully updated chat bubbles');
|
|
INSERT INTO `emulator_texts` (`key`, `value`) VALUES ('commands.description.cmd_update_chat_bubbles', ':update_chat_bubbles'); |