-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
08721c4
commit d04240b
Showing
8 changed files
with
522 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,32 @@ | ||
# Discord-x-Twitch | ||
A Multi-Bot using Discord.js and tmi.js to enhance logging, and streamers needs! | ||
# Discord x Twitch Bot | ||
|
||
Hello! Welcome to **Discord x Twitch Bot**, a single Node Process meant to make it easier for streamers to have bot a **Twitch Bot** and **Discord Bot** running at the same time with minimal impact on their gameplay and or stream. With an easy to use **Configuration File** for you! Everything is linked one way or another, for example the **Twitch Logging to Discord Feature!** | ||
|
||
|
||
# Installation | ||
|
||
To install **Discord x Twitch** you can follow the steps below! | ||
1. Download Node JS/NPM here *https://nodejs.org/* | ||
2. Download the Bot and Unzip to your Desktop | ||
3. Once Unzipped, press and run ```RunThisFirst.bat``` | ||
4. You should have a new Folder called ```node_modules``` | ||
5. Configure ```config.js``` to your needs! | ||
6. Run ```Starter.bat``` and your bot should be Online! | ||
|
||
# File Directory | ||
>root | ||
- bot.js (Main File that runs Bot) | ||
- config.js (Bot Configuration) | ||
|
||
>commands | ||
- base.js (Base Discord Command to make your own!) | ||
- count.js (Simple Count Command) | ||
|
||
>events | ||
- All are Events that happen in Discord. If you want to remove an event to be logged, just delete the file! | ||
|
||
>twitch_cmds | ||
- base.js (Base Twitch Command to make your own!) | ||
- ping.js (Ping Command) | ||
|
||
>Panel (COMING SOON) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
npm i |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
echo off | ||
title Bot Starter | ||
cls | ||
:start | ||
echo ------------------------------- | ||
echo Hypnotic Development | ||
echo Bot Booting/Starting | ||
echo ------------------------------- | ||
node index.js | ||
echo ------------------------------- | ||
echo Bot Crashed... Looping for Restart | ||
echo ------------------------------- | ||
timeout 1 > null | ||
goto start |
Oops, something went wrong.