easier command
This commit is contained in:
@@ -5,12 +5,12 @@ TODO:
|
|||||||
☐ support for $pause
|
☐ support for $pause
|
||||||
☐ Command to stop video rotation / timers (shutdown)
|
☐ Command to stop video rotation / timers (shutdown)
|
||||||
☐ Start/stop stream automation
|
☐ Start/stop stream automation
|
||||||
☐ Rotating background images (leftside)
|
|
||||||
☐ Stream alerts for chat
|
☐ Stream alerts for chat
|
||||||
☐ remove currently playing video from vote choices
|
☐ remove currently playing video from vote choices
|
||||||
☐ restrict # of requests a user can have in the queue at once
|
☐ restrict # of requests a user can have in the queue at once
|
||||||
☐ Add cooldowns
|
☐ Add cooldowns
|
||||||
☐ Tool to output list of video ID's / descriptions
|
☐ Tool to output list of video ID's / descriptions
|
||||||
|
☐ Rotating background images (leftside)
|
||||||
|
|
||||||
Ideas:
|
Ideas:
|
||||||
☐ Web interface for viewers to issue commands -- twitch extension?!
|
☐ Web interface for viewers to issue commands -- twitch extension?!
|
||||||
|
|||||||
4
fgfm.js
4
fgfm.js
@@ -279,14 +279,14 @@ const streamInit = (config, twitch) => {
|
|||||||
obs.switchToScene(newScene).catch(console.error);
|
obs.switchToScene(newScene).catch(console.error);
|
||||||
|
|
||||||
// SET ON-SCREEN ACTIVITY
|
// SET ON-SCREEN ACTIVITY
|
||||||
} else if (commandNoPrefix === 'setactivity') {
|
} else if (commandNoPrefix === 'setact') {
|
||||||
let newActivity = commandParts.slice(1).join(' ');
|
let newActivity = commandParts.slice(1).join(' ');
|
||||||
if (!newActivity) {
|
if (!newActivity) {
|
||||||
twitch.botChat.say(to, `Please provide a new activity`);
|
twitch.botChat.say(to, `Please provide a new activity`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
obs.showActivity(newActivity).then(() => twitch.botChat.say(to, `Activity updated!`)).catch(console.error);
|
obs.showActivity(newActivity).catch(console.error);
|
||||||
|
|
||||||
// REBOOT
|
// REBOOT
|
||||||
} else if (commandNoPrefix === 'reboot') {
|
} else if (commandNoPrefix === 'reboot') {
|
||||||
|
|||||||
Reference in New Issue
Block a user