remove config from repo
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -51,4 +51,6 @@ node_modules/*
|
|||||||
logs/*
|
logs/*
|
||||||
|
|
||||||
start.bat
|
start.bat
|
||||||
tokens.json
|
tokens.json
|
||||||
|
|
||||||
|
config.json
|
||||||
57
config.json
57
config.json
@@ -1,57 +0,0 @@
|
|||||||
{
|
|
||||||
"botName": "greenhambot",
|
|
||||||
"d_token": "MjkyNzAxNjg2NjE3ODY2MjUx.DEfe6Q.ShdWRL77BYgfKlW_oFvUwaiAn5Q",
|
|
||||||
"adminID": "88301001169207296",
|
|
||||||
"prefix": "!",
|
|
||||||
"passes": 2,
|
|
||||||
"allowedSfxChannels": "bot|alttp-alerts",
|
|
||||||
"sfxVolume": 0.3,
|
|
||||||
"botChannel": "bot",
|
|
||||||
"textCmdCooldown": 5,
|
|
||||||
"twitch": {
|
|
||||||
"channel": "#greenham",
|
|
||||||
"modChannel": "#greenham (the-lab)",
|
|
||||||
"botLogin": {
|
|
||||||
"username": "greenhambot",
|
|
||||||
"oauth": "oauth:90aunml4vwyt7zgulm7s5m7xt4hnpc"
|
|
||||||
},
|
|
||||||
"editorLogin": {
|
|
||||||
"username": "greenham",
|
|
||||||
"oauth": "oauth:gmi4sjl3k0we0d4gsppkrcqcjpdma6"
|
|
||||||
},
|
|
||||||
"cmdPrefix": "$",
|
|
||||||
"admins": ["greenham","greenhambot"],
|
|
||||||
"blacklistedUsers": [],
|
|
||||||
"ircServer" : "irc.chat.twitch.tv",
|
|
||||||
"debug": false,
|
|
||||||
"channelId": 78410627,
|
|
||||||
"controlRoomId": "637d55c7-f194-4c86-98e3-3bce54fd8b30",
|
|
||||||
"subRoomId": "6686e48b-7c5c-408d-ab58-034766b99cd4"
|
|
||||||
},
|
|
||||||
"obs": {
|
|
||||||
"websocket": {
|
|
||||||
"address": "192.168.0.111:4444",
|
|
||||||
"password": "goodnewseveryone"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"defaultSceneName": "fgfm",
|
|
||||||
"commercialSceneName": "commercial",
|
|
||||||
"currentActivitySceneItemName": "now-showing-txt",
|
|
||||||
"initialQueueSize": 3,
|
|
||||||
"recentlyPlayedMemory": 5,
|
|
||||||
"roomGrindChance": 10,
|
|
||||||
"roomGrindPlaytime": 450,
|
|
||||||
"roomShuffleChance": 85,
|
|
||||||
"roomVidPlaytime": 150,
|
|
||||||
"roomShuffleCount": 6,
|
|
||||||
"videoPollSize": 5,
|
|
||||||
"videoPollIntervalMinutes": 15,
|
|
||||||
"commercialsEnabled": false,
|
|
||||||
"commercialInterval": 3600,
|
|
||||||
"auwChance": 25,
|
|
||||||
"defaultSRVolume": 50,
|
|
||||||
"vodConfigFile": "./conf/vods.json",
|
|
||||||
"roomConfigFile": "./conf/rooms.json",
|
|
||||||
"roomVidsBasePath": "Y:\\media\\videos\\ALttP\\my-vids\\room-vids",
|
|
||||||
"debug": false
|
|
||||||
}
|
|
||||||
@@ -1,7 +1,8 @@
|
|||||||
TODO:
|
TODO:
|
||||||
|
☐ Move vrmode timer to this bot, delete from SLCB
|
||||||
☐ Support a CLI flag to delay showing queue until command is issued
|
☐ Support a CLI flag to delay showing queue until command is issued
|
||||||
☐ Room vid requests / import
|
☐ Room vid requests / import
|
||||||
☐ Support viewer requests
|
☐ Improved interface for viewer requests
|
||||||
☐ Web interface? Twitch extension?
|
☐ Web interface? Twitch extension?
|
||||||
☐ Improvements
|
☐ Improvements
|
||||||
☐ When playing a room back, loop it at slower speeds for a few iterations
|
☐ When playing a room back, loop it at slower speeds for a few iterations
|
||||||
|
|||||||
1
fgfm.js
1
fgfm.js
@@ -24,6 +24,7 @@ let state = {
|
|||||||
"commercialPlaying": false
|
"commercialPlaying": false
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Main screen turn on
|
||||||
const obs = new GHOBS(config);
|
const obs = new GHOBS(config);
|
||||||
obs.init()
|
obs.init()
|
||||||
.then(() => {return twitchInit(config.twitch)})
|
.then(() => {return twitchInit(config.twitch)})
|
||||||
|
|||||||
Reference in New Issue
Block a user