Implemented bot owner options

This commit is contained in:
Uleat
2018-10-09 22:04:47 -04:00
parent a836baac32
commit 43aaaf7f26
12 changed files with 124 additions and 1 deletions
@@ -0,0 +1,11 @@
DROP TABLE IF EXISTS `bot_owner_options`;
CREATE TABLE `bot_owner_options` (
`owner_id` INT(11) UNSIGNED NOT NULL,
`death_marquee` SMALLINT(3) UNSIGNED NULL DEFAULT '0',
PRIMARY KEY (`owner_id`)
)
COLLATE='latin1_swedish_ci'
ENGINE=MyISAM;
INSERT INTO `bot_command_settings`(`bot_command`, `access`, `aliases`) VALUES ('owneroption', '0', 'oo');