This commit is contained in:
choelzl 2022-02-06 19:30:05 +01:00
parent 58816b735d
commit e0bfb9b305
Signed by: sora
GPG Key ID: A362EA0491E2EEA0
2 changed files with 10 additions and 0 deletions

View File

@ -14,5 +14,13 @@
var subscriber = event.getSubscriber();
alert(subscriber.toUpperCase(), "NEW SUBSCRIBER", "subscribe");
});
$.bind('initReady', function() {
$.registerChatSubcommand('calert', 'follow', 2);
$.registerChatSubcommand('calert', 'subscribe', 2);
$.registerChatSubcommand('calert', 'donation', 2);
$.registerChatCommand('./custom/custom/customAlerts.js', 'calert', 2);
});
})();

View File

@ -40,6 +40,8 @@
$.registerChatSubcommand('overlay', 'subscribe', 2);
$.registerChatSubcommand('overlay', 'donation', 2);
$.registerChatSubcommand('overlay', 'timer', 2);
$.registerChatCommand('./custom/custom/customOverlay.js', 'overlay', 2);
});