Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ProjectBots/StreamRaidersBot
A bot for automated farming in Stream Raiders
https://github.com/ProjectBots/StreamRaidersBot
Last synced: 3 months ago
JSON representation
A bot for automated farming in Stream Raiders
- Host: GitHub
- URL: https://github.com/ProjectBots/StreamRaidersBot
- Owner: ProjectBots
- License: gpl-3.0
- Archived: true
- Created: 2021-02-19T12:06:24.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-10-02T13:22:33.000Z (about 1 year ago)
- Last Synced: 2024-05-29T00:23:23.395Z (6 months ago)
- Language: Java
- Size: 25 MB
- Stars: 50
- Watchers: 4
- Forks: 14
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# StreamRaiderBot
IMORTANT:
At the moment StreamRaiders is detecting the bot and "shadow bans" everyone who uses it.
You know that you got hit if the window for searching captains is empty.
These bans may be appealed (no guarantee) by sending a support e-mail to SR and following instructions if any.
Because of this it is NOT recommended to use the bot in its current state.
I will make an update if anything changes.----
Disclaimer: this program is not from Stream Raiders nor affiliated with them. Use at own Risk
A bot for automated farming in Stream Raiders
We now have a [Discord Server](https://discord.gg/u7e5nTRaZQ)!
Docker version over [here](https://github.com/dead-f00l/StreamRaidersBot-docker)
First Steps:
click the "add a profile" under "Bot" to add a profile (this bot can handle a lot of accounts for auto farming).
enter a profilename (dont need to be the account name).
hit enter, a browser will open where you login to StreamRaiders.
let the website load, then just close the browser.
wait a few seconds until you see the profile.
press the play button and watch how it farms for you.
to prevent bans this bot will wait 100 - 720 sec (by default) before it checks the raids again.the guide can be opened under "Bot" (the guide is not up to date at the moment)
***
### How to use the bot in your own project
add the bot module to your projectMavem:
```xml
com.github.ProjectBots
StreamRaidersBot
{last commit id or release tag}
StreamRaidersBot
Bot
1.0.0
jitpack.io
https://jitpack.io
```Initialise the Manager
```java
Manager.ini(BotListener botlis);
```Load all profiles
```java
Manager.loadAllNewProfiles();
```Stop the bot
```java
Manager.stop();
```Example:
```java
public static void main(String[] args) {
// initialise Manager
try {
Manager.ini(new BotListener() {
@Override
public boolean configNotReadable() {
return false;
}
});
} catch (IniCanceledException e) {
e.printStackTrace();
return;
}
// load all profiles
Manager.loadAllNewProfiles();
// start all profiles
for(String cid : Manager.getLoadedProfiles())
for(int i=0; i<5; i++)
Manager.setRunning(cid, i, true);
// wait for any key
try {
System.in.read();
} catch (IOException e) {
e.printStackTrace();
}
// exit bot
Manager.stop();
}
```