Giter Site home page Giter Site logo

twitchlurkerv2's Introduction

twitchLurkerV2

Download Twitch Lurker from here

What is Twitch Lurker?

Twitch Lurker is a bot that joins to chat room of the Twitch channels you follow. It acts as a chatter and sends messages to as many channels as you wish at the same time without you needing to open up Twitch. It also lets you benefit from subscription gifts and drops as long as you leave it on.


How To Edit Twitch Lurker?

From here (file name on your local repo would be CriteriaControl.cs), you can edit viewer count and which files to use for criteria control.

IMPORTANT NOTE: It is not suggested that you change the default values in CriteriaControl.cs but we all make mistakes in the heat of passion.


-Bot sends text messages to channels only if the channel has more than 2000 viewers.

In order to change that, you can change the value of if (channel.Stream.Viewers > 2000) to any value you want it to be.

public static async Task<bool> DoesStreamHaveMoreThan2000Viewers(TwitchAPI api, string channelID)
        {
            try
            {
                var channel = await api.V5.Streams.GetStreamByUserAsync(channelID);
                if (channel != null)
                {
                    if (channel.Stream != null) { 
                        if (channel.Stream.Viewers > 2000)
                            return true;

-Bot has default blacklisted channels. You can delete the current ones or add more channels.

In order to add more channels, go to Windows search and type in %appdata%. From there, go to Chastoca>LurkerV2>Config>BlacklistedChannels and type in the channel ID you want to blacklist.


-Bot only sends emotes as messages and has some default emotes. You can delete the default ones or add more to them.

In order to edit emotes, go to Windows search and type in %appdata%. From there, go to Chastoca>LurkerV2>Config>Emotes and edit emotes in the text file as you please.


-You can change your connection credentials if you wish to change the account connected to bot.

In order to change connection credentials, go to Windows search and type in %appdata%. From there, go to Chastoca>LurkerV2>Config>ConnectionCredentials and change login details.



How to check log details?

First, go to Windows search and type in %appdata%, then navigate to Chastoca>LurkerV2. From here:


  • You can check crash reports from CrashReports
  • You can see if anyone mentioned you in the chat from Mentions. In mentions you have two files:
  • From ChatLogs, you can see the channel name, link ID, person who sent the message and the message itself.
  • From StreamIDs, you can see when the message was sent and link of the clip from the time message was sent.

BE RESPONSIBLE AND DO NOT USE THIS BOT FOR MALICIOUS INTENT. HAVE FUN!

twitchlurkerv2's People

Contributors

abrek-koc avatar ardaerbaharli avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.