├── .gitattributes ├── Games ├── Defuse │ ├── Defuse_StreamlabsSystem.py │ ├── README.txt │ ├── Sounds │ │ └── test.mp3 │ ├── UI_Config.json │ ├── client.js │ └── index.html ├── FreeForAll │ ├── FreeForAll_StreamlabsSystem.py │ ├── README.txt │ └── UI_Config.json ├── Gamble │ ├── Gamble_StreamlabsSystem.py │ ├── README.txt │ ├── UI_Config.json │ └── jackpot.txt ├── Readme.md ├── Roulette │ ├── README.txt │ ├── Roulette_StreamlabsSystem.py │ ├── UI_Config.json │ ├── settings.js │ └── settings.json ├── Russian_Roulette │ ├── README.txt │ ├── Russian_Roulette_StreamlabsSystem.py │ └── UI_Config.json ├── SE_Roulette │ ├── SERoulette_StreamlabsSystem.py │ └── UI_Config.json └── Steal │ ├── SimpleSteal_StreamlabsSystem.py │ └── UI_Config.json ├── README.md └── Tools ├── AutomaticChatSettings ├── AutoChatSettings_StreamlabsSystem.py ├── README.txt └── UI_Config.json ├── Betting ├── Betting_StreamlabsSystem.py ├── README.txt └── UI_Config.json ├── CastorrsLazyPack ├── CLP_StreamlabsSystem.py ├── Index.html ├── README.txt ├── UI_Config.json ├── client.js └── sounds │ └── test.mp3 ├── Close Spotify ├── CloseSpotify_StreamlabsSystem.py └── UI_Config.json ├── Extra Counter ├── Counter_StreamlabsSystem.py ├── README.txt ├── UI_Config.json ├── count.txt ├── settings.js └── settings.json ├── GoingLiveSettings └── AutoChatSettings_StreamlabsSystem.py ├── MakeItRain ├── API_Key.js ├── MakeItRain_StreamlabsSystem.py ├── README.txt ├── Sounds │ └── test.mp3 ├── UI_Config.json ├── client.js ├── index.html ├── settings.js └── settings.json ├── MessageForwarding ├── MessageForwarding_StreamlabsSystem.py ├── README.txt ├── UI_Config.json ├── settings.js └── settings.json ├── MessageSounds ├── MessageSounds_StreamlabsSystem.py ├── README.txt ├── UI_Config.json └── sounds │ ├── Discord.mp3 │ ├── Facebook.mp3 │ ├── GTA V Online.mp3 │ ├── Gmail.mp3 │ ├── Hangouts.mp3 │ ├── Iphone.mp3 │ ├── Onii-Chan.mp3 │ ├── Playstation.mp3 │ ├── Skype.mp3 │ ├── Snapchat.mp3 │ ├── Steam.mp3 │ ├── Tinder.mp3 │ ├── Twitter.mp3 │ ├── WhatsApp.mp3 │ └── Xbox.mp3 ├── Multi_Shoutout ├── Multi_Shoutout_StreamlabsSystem.py ├── UI_Config.json ├── settings.js └── settings.json ├── New Chatter Payouts ├── Log.txt ├── NewChatterPayouts_StreamlabsSystem.py └── UI_Config.json ├── Number Voting ├── NumberVoting_StreamlabsSystem.py └── UI_Config.json ├── Readme.md ├── Redeem ├── Index.html ├── Modules │ └── settingsmodule.py ├── README.txt ├── Redeem_StreamlabsSystem.py ├── Sounds │ └── test.mp3 ├── UI_Config.json └── client.js ├── TempBonusCurrency ├── README.txt ├── TempBonusCurrency_StreamlabsSystem.py └── UI_Config.json ├── Whisper Response ├── UI_Config.json └── WhisperResponse_StreamlabsSystem.py └── Word Trigger ├── Sounds └── test.mp3 ├── UI_Config.json └── WordTrigger_StreamlabsSystem.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/.gitattributes -------------------------------------------------------------------------------- /Games/Defuse/Defuse_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/Defuse/Defuse_StreamlabsSystem.py -------------------------------------------------------------------------------- /Games/Defuse/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/Defuse/README.txt -------------------------------------------------------------------------------- /Games/Defuse/Sounds/test.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/Defuse/Sounds/test.mp3 -------------------------------------------------------------------------------- /Games/Defuse/UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/Defuse/UI_Config.json -------------------------------------------------------------------------------- /Games/Defuse/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/Defuse/client.js -------------------------------------------------------------------------------- /Games/Defuse/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/Defuse/index.html -------------------------------------------------------------------------------- /Games/FreeForAll/FreeForAll_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/FreeForAll/FreeForAll_StreamlabsSystem.py -------------------------------------------------------------------------------- /Games/FreeForAll/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/FreeForAll/README.txt -------------------------------------------------------------------------------- /Games/FreeForAll/UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/FreeForAll/UI_Config.json -------------------------------------------------------------------------------- /Games/Gamble/Gamble_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/Gamble/Gamble_StreamlabsSystem.py -------------------------------------------------------------------------------- /Games/Gamble/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/Gamble/README.txt -------------------------------------------------------------------------------- /Games/Gamble/UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/Gamble/UI_Config.json -------------------------------------------------------------------------------- /Games/Gamble/jackpot.txt: -------------------------------------------------------------------------------- 1 | 300 -------------------------------------------------------------------------------- /Games/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/Readme.md -------------------------------------------------------------------------------- /Games/Roulette/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/Roulette/README.txt -------------------------------------------------------------------------------- /Games/Roulette/Roulette_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/Roulette/Roulette_StreamlabsSystem.py -------------------------------------------------------------------------------- /Games/Roulette/UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/Roulette/UI_Config.json -------------------------------------------------------------------------------- /Games/Roulette/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/Roulette/settings.js -------------------------------------------------------------------------------- /Games/Roulette/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/Roulette/settings.json -------------------------------------------------------------------------------- /Games/Russian_Roulette/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/Russian_Roulette/README.txt -------------------------------------------------------------------------------- /Games/Russian_Roulette/Russian_Roulette_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/Russian_Roulette/Russian_Roulette_StreamlabsSystem.py -------------------------------------------------------------------------------- /Games/Russian_Roulette/UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/Russian_Roulette/UI_Config.json -------------------------------------------------------------------------------- /Games/SE_Roulette/SERoulette_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/SE_Roulette/SERoulette_StreamlabsSystem.py -------------------------------------------------------------------------------- /Games/SE_Roulette/UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/SE_Roulette/UI_Config.json -------------------------------------------------------------------------------- /Games/Steal/SimpleSteal_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/Steal/SimpleSteal_StreamlabsSystem.py -------------------------------------------------------------------------------- /Games/Steal/UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Games/Steal/UI_Config.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/README.md -------------------------------------------------------------------------------- /Tools/AutomaticChatSettings/AutoChatSettings_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/AutomaticChatSettings/AutoChatSettings_StreamlabsSystem.py -------------------------------------------------------------------------------- /Tools/AutomaticChatSettings/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/AutomaticChatSettings/README.txt -------------------------------------------------------------------------------- /Tools/AutomaticChatSettings/UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/AutomaticChatSettings/UI_Config.json -------------------------------------------------------------------------------- /Tools/Betting/Betting_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Betting/Betting_StreamlabsSystem.py -------------------------------------------------------------------------------- /Tools/Betting/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Betting/README.txt -------------------------------------------------------------------------------- /Tools/Betting/UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Betting/UI_Config.json -------------------------------------------------------------------------------- /Tools/CastorrsLazyPack/CLP_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/CastorrsLazyPack/CLP_StreamlabsSystem.py -------------------------------------------------------------------------------- /Tools/CastorrsLazyPack/Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/CastorrsLazyPack/Index.html -------------------------------------------------------------------------------- /Tools/CastorrsLazyPack/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/CastorrsLazyPack/README.txt -------------------------------------------------------------------------------- /Tools/CastorrsLazyPack/UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/CastorrsLazyPack/UI_Config.json -------------------------------------------------------------------------------- /Tools/CastorrsLazyPack/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/CastorrsLazyPack/client.js -------------------------------------------------------------------------------- /Tools/CastorrsLazyPack/sounds/test.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/CastorrsLazyPack/sounds/test.mp3 -------------------------------------------------------------------------------- /Tools/Close Spotify/CloseSpotify_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Close Spotify/CloseSpotify_StreamlabsSystem.py -------------------------------------------------------------------------------- /Tools/Close Spotify/UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Close Spotify/UI_Config.json -------------------------------------------------------------------------------- /Tools/Extra Counter/Counter_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Extra Counter/Counter_StreamlabsSystem.py -------------------------------------------------------------------------------- /Tools/Extra Counter/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Extra Counter/README.txt -------------------------------------------------------------------------------- /Tools/Extra Counter/UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Extra Counter/UI_Config.json -------------------------------------------------------------------------------- /Tools/Extra Counter/count.txt: -------------------------------------------------------------------------------- 1 | 100 -------------------------------------------------------------------------------- /Tools/Extra Counter/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Extra Counter/settings.js -------------------------------------------------------------------------------- /Tools/Extra Counter/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Extra Counter/settings.json -------------------------------------------------------------------------------- /Tools/GoingLiveSettings/AutoChatSettings_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/GoingLiveSettings/AutoChatSettings_StreamlabsSystem.py -------------------------------------------------------------------------------- /Tools/MakeItRain/API_Key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MakeItRain/API_Key.js -------------------------------------------------------------------------------- /Tools/MakeItRain/MakeItRain_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MakeItRain/MakeItRain_StreamlabsSystem.py -------------------------------------------------------------------------------- /Tools/MakeItRain/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MakeItRain/README.txt -------------------------------------------------------------------------------- /Tools/MakeItRain/Sounds/test.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MakeItRain/Sounds/test.mp3 -------------------------------------------------------------------------------- /Tools/MakeItRain/UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MakeItRain/UI_Config.json -------------------------------------------------------------------------------- /Tools/MakeItRain/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MakeItRain/client.js -------------------------------------------------------------------------------- /Tools/MakeItRain/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MakeItRain/index.html -------------------------------------------------------------------------------- /Tools/MakeItRain/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MakeItRain/settings.js -------------------------------------------------------------------------------- /Tools/MakeItRain/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MakeItRain/settings.json -------------------------------------------------------------------------------- /Tools/MessageForwarding/MessageForwarding_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageForwarding/MessageForwarding_StreamlabsSystem.py -------------------------------------------------------------------------------- /Tools/MessageForwarding/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageForwarding/README.txt -------------------------------------------------------------------------------- /Tools/MessageForwarding/UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageForwarding/UI_Config.json -------------------------------------------------------------------------------- /Tools/MessageForwarding/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageForwarding/settings.js -------------------------------------------------------------------------------- /Tools/MessageForwarding/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageForwarding/settings.json -------------------------------------------------------------------------------- /Tools/MessageSounds/MessageSounds_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageSounds/MessageSounds_StreamlabsSystem.py -------------------------------------------------------------------------------- /Tools/MessageSounds/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageSounds/README.txt -------------------------------------------------------------------------------- /Tools/MessageSounds/UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageSounds/UI_Config.json -------------------------------------------------------------------------------- /Tools/MessageSounds/sounds/Discord.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageSounds/sounds/Discord.mp3 -------------------------------------------------------------------------------- /Tools/MessageSounds/sounds/Facebook.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageSounds/sounds/Facebook.mp3 -------------------------------------------------------------------------------- /Tools/MessageSounds/sounds/GTA V Online.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageSounds/sounds/GTA V Online.mp3 -------------------------------------------------------------------------------- /Tools/MessageSounds/sounds/Gmail.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageSounds/sounds/Gmail.mp3 -------------------------------------------------------------------------------- /Tools/MessageSounds/sounds/Hangouts.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageSounds/sounds/Hangouts.mp3 -------------------------------------------------------------------------------- /Tools/MessageSounds/sounds/Iphone.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageSounds/sounds/Iphone.mp3 -------------------------------------------------------------------------------- /Tools/MessageSounds/sounds/Onii-Chan.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageSounds/sounds/Onii-Chan.mp3 -------------------------------------------------------------------------------- /Tools/MessageSounds/sounds/Playstation.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageSounds/sounds/Playstation.mp3 -------------------------------------------------------------------------------- /Tools/MessageSounds/sounds/Skype.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageSounds/sounds/Skype.mp3 -------------------------------------------------------------------------------- /Tools/MessageSounds/sounds/Snapchat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageSounds/sounds/Snapchat.mp3 -------------------------------------------------------------------------------- /Tools/MessageSounds/sounds/Steam.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageSounds/sounds/Steam.mp3 -------------------------------------------------------------------------------- /Tools/MessageSounds/sounds/Tinder.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageSounds/sounds/Tinder.mp3 -------------------------------------------------------------------------------- /Tools/MessageSounds/sounds/Twitter.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageSounds/sounds/Twitter.mp3 -------------------------------------------------------------------------------- /Tools/MessageSounds/sounds/WhatsApp.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageSounds/sounds/WhatsApp.mp3 -------------------------------------------------------------------------------- /Tools/MessageSounds/sounds/Xbox.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/MessageSounds/sounds/Xbox.mp3 -------------------------------------------------------------------------------- /Tools/Multi_Shoutout/Multi_Shoutout_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Multi_Shoutout/Multi_Shoutout_StreamlabsSystem.py -------------------------------------------------------------------------------- /Tools/Multi_Shoutout/UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Multi_Shoutout/UI_Config.json -------------------------------------------------------------------------------- /Tools/Multi_Shoutout/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Multi_Shoutout/settings.js -------------------------------------------------------------------------------- /Tools/Multi_Shoutout/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Multi_Shoutout/settings.json -------------------------------------------------------------------------------- /Tools/New Chatter Payouts/Log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/New Chatter Payouts/Log.txt -------------------------------------------------------------------------------- /Tools/New Chatter Payouts/NewChatterPayouts_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/New Chatter Payouts/NewChatterPayouts_StreamlabsSystem.py -------------------------------------------------------------------------------- /Tools/New Chatter Payouts/UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/New Chatter Payouts/UI_Config.json -------------------------------------------------------------------------------- /Tools/Number Voting/NumberVoting_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Number Voting/NumberVoting_StreamlabsSystem.py -------------------------------------------------------------------------------- /Tools/Number Voting/UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Number Voting/UI_Config.json -------------------------------------------------------------------------------- /Tools/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Readme.md -------------------------------------------------------------------------------- /Tools/Redeem/Index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Redeem/Index.html -------------------------------------------------------------------------------- /Tools/Redeem/Modules/settingsmodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Redeem/Modules/settingsmodule.py -------------------------------------------------------------------------------- /Tools/Redeem/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Redeem/README.txt -------------------------------------------------------------------------------- /Tools/Redeem/Redeem_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Redeem/Redeem_StreamlabsSystem.py -------------------------------------------------------------------------------- /Tools/Redeem/Sounds/test.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Redeem/Sounds/test.mp3 -------------------------------------------------------------------------------- /Tools/Redeem/UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Redeem/UI_Config.json -------------------------------------------------------------------------------- /Tools/Redeem/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Redeem/client.js -------------------------------------------------------------------------------- /Tools/TempBonusCurrency/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/TempBonusCurrency/README.txt -------------------------------------------------------------------------------- /Tools/TempBonusCurrency/TempBonusCurrency_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/TempBonusCurrency/TempBonusCurrency_StreamlabsSystem.py -------------------------------------------------------------------------------- /Tools/TempBonusCurrency/UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/TempBonusCurrency/UI_Config.json -------------------------------------------------------------------------------- /Tools/Whisper Response/UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Whisper Response/UI_Config.json -------------------------------------------------------------------------------- /Tools/Whisper Response/WhisperResponse_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Whisper Response/WhisperResponse_StreamlabsSystem.py -------------------------------------------------------------------------------- /Tools/Word Trigger/Sounds/test.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Word Trigger/Sounds/test.mp3 -------------------------------------------------------------------------------- /Tools/Word Trigger/UI_Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Word Trigger/UI_Config.json -------------------------------------------------------------------------------- /Tools/Word Trigger/WordTrigger_StreamlabsSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/castorr/Chatbot-Scripts/HEAD/Tools/Word Trigger/WordTrigger_StreamlabsSystem.py --------------------------------------------------------------------------------