Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gabrieljmj/menesbot
Twitch bot
https://github.com/gabrieljmj/menesbot
Last synced: about 2 months ago
JSON representation
Twitch bot
- Host: GitHub
- URL: https://github.com/gabrieljmj/menesbot
- Owner: gabrieljmj
- Created: 2015-08-18T01:20:30.000Z (over 9 years ago)
- Default Branch: dev
- Last Pushed: 2015-08-18T23:13:36.000Z (over 9 years ago)
- Last Synced: 2023-08-05T17:52:37.356Z (over 1 year ago)
- Language: JavaScript
- Size: 121 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
MenesBot
========
Twitch bot for your chat.
**Status:** ```In-development```## Usage
First, you have to install NodeJS here: http://nodejs.org.### Installing
Download the ZIP file: https://github.com/GabrielJMJ/MenesBot/archive/master.zip
Or clone: ```$ git clone https://github.com/GabrielJMJ/MenesBot```.### Configuration
Create a file called ```configurations.json``` in the path of the bot files.
* ```YOUR_CHANNEL``` is the channel where the bot will be activated.
* ```BOT_USER``` is the Twitch username of the bot.
* Go to http://twitchapps.com/tmi logged on Twitch with your bot account and generate a password. Copy ```oauth:...``` and replace ```OAUTH_PASS``` by that.```json
{
"owner": "YOUR_CHANNEL",
"bot": {
"user": "BOT_USER",
"password": "OAUTH_PASS"
},
"ignore": [
"moobot",
"nightbot"
],
"msg_interval_time": 20,
"custom_commands": {
//...
},
"default_commands": [
"kiss",
"slap"
],
"block_words": [
//...
],
"messages_interval": [
],
"command_prefix": "!",
"slap_command_callings": [
"{from} said {to} smells sand in the desert where his mother became a prostitute in exchange for olives.",
"Hey {from}! I'm not with desire to offend {to}. Fuck yourself and be lovely with your friends.",
],
"timeout": {
"user_aceepted_failures": 3,
"last_to_time_in_seconds": 600
}
}
```### Executing
Go to the path that you extrated files in cmd and execute that command and run the bot. Futurely this will have an executable.
```cmd
$ npm install
$ npm start
```