Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Watching Stream limit #618

Open
LeaLangley opened this issue Oct 29, 2024 · 2 comments
Open

Watching Stream limit #618

LeaLangley opened this issue Oct 29, 2024 · 2 comments

Comments

@LeaLangley
Copy link

LeaLangley commented Oct 29, 2024

Is your feature request related to a problem?

im using it together with a twitch drop miner, and sometimes the drop miner dosnt work properly when the channel point miner watches 2 streams.

Proposed solution

  • detect when you watch a stream already from "somewhere else"
    or
  • setting to limit the channel point miner to watch only 1 stream max at a time

Alternatives you've considered

Stop using Twitch-Channel-Points-Miner-v2

Additional context

No response

@Edgarianer007
Copy link

i Have see Same Problem

@OrbitalCannon
Copy link

There's no client side way of determining the number of streams currently watched outside of the Points Miner.

I'd speculate that if you correctly adjusted a few lines in TwitchChannelPointsMiner/classes/Twitch.py where streamers_watching is listed as 2 and change it to 1 it should limit the watcher to a single stream.

Changing both instances of 2 to 1 here should cause the Points miner to only watch a single channel if you are using the Priority.ORDER :

streamers_watching = []
for prior in priority:
if prior == Priority.ORDER and len(streamers_watching) < 2:
# Get the first 2 items, they are already in order
streamers_watching += streamers_index[:2]

A few alternatives:

  1. You could get rid of the Drops Miner and prioritize the Points Miner with Priority.DROPS higher up with the same channels in the list. This has obvious limitations since you can only collect drops based on channel not on category/game.
  2. Create a 2nd Twitch account to use with the Points Miner or vice versa and connect all your accounts there.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants