Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Simple script to join multiple Twitch.tv channels' chats

Notifications You must be signed in to change notification settings

D3XX3R/twitch-lurker-bot

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Twitch Lurker Bot

A simple script to join multiple Twitch.tv channel chats under a user account.

Description

What to use it for

The primary purpose of this script is to increase your account activity in channels' chat-related actions while not actually watching the stream at the given moment, for example:

  • Increase your chances of receiving a community sub gift
  • Gain points in various watchtime-related point systems
  • And more...

What to keep in mind

Even though the script allows you to join a large number of channels, please, consider using it only for channels you would spend your time in nonetheless. Running the script presents you an advantage compared to other regular users, so use it only for channels you actively support and watch. Always be sure to follow Twitch.tv's Terms of Service.

How it works

The script is based on tmi.js, a Node.js package for the Twitch Messaging Interface. Once you provide an authorization token to your account and a list of channels, the script joins chat rooms for these channels with your account. It does not connect to the actual stream and therefore it does not count towards the viewer count - usage of this script is not viewer botting.

Instructions

Installation

  1. Download and install Node.js on your machine:

    https://nodejs.org/en/download/

  2. Clone or download the Twich Lurker Bot script to your desired location:

    git clone git@github.com:bartosjiri/twitch-lurker-bot.git
    
  3. Install the script dependencies:

    npm install
    
  4. Obtain the authentication token for your Twitch.tv account:

    https://twitchapps.com/tmi/

  5. Copy the config.example.js file as config.js and provide your account username, authentication token and list of channels to join. For example:

    module.exports = {
      username: "TheBiggestFan123",
      token: "oauth:m81v8urm9qwj6ceo0vapfmn8mepj64",
      channels: [
        "FamousStreamer",
        "PlayerOne",
        "FunnyGuy"
      ]
    };
    

Usage

  1. To start the script, navigate to the location of lurker.js file and run:

    node lurker.js
    

    Tip: If you don't want to keep your terminal window open while running the script, you can try running the script in a detached process.

Disclaimer

Use the script at your own risk, the repository owners and/or contributors are not responsible for any actions taken as a result of installing, setting up or running this script. Never share your authentication token with other people or store it at publicly available locations. Always be sure to follow Twitch.tv's Terms of Service.

About

Simple script to join multiple Twitch.tv channels' chats

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%