This bot is probably the reason you saw that post again on Reddit. Need help with the bot? Join us on Discord https://bit.ly/mrps-discord
Karma Farming Bot 2.0 Video
Karma Farming on Reddit Video
Karma Farming Bot 1.0 Video
Subscribe: http://bit.ly/mrps-yt-sub
Website: https://bit.ly/mrps-site
- Automatically reposts popular posts from the past to earn post karma
- Automatically generates unique (somewhat) contextually relevant comments using cobe
- Automatically deletes poor performing comments
- Configurable frequency of posting, commenting, and other actions
- Filter the bot from learning certain words, or allow/disallow certain subreddits
- Schedule when the bot wakes up and sleeps to run actions.
- Auto detects if the account is shadowbanned
- Use Spinwriter API to mix up comments and titles, making them less detectable as reposts
- Re-upload images to Imgur to make reposts less detectable
- Limit the subreddits that the bot learns from and posts to
- Run on Linux, MacOS, Docker, or Windows (using Linux in VirtualBox)
- Charts that show Brain database size, and Post/Comment Karma growth over time
Most of these options can be configured in utils.py
First, you need to create a Reddit account, and then create an app on reddit.com. After creating a Reddit account go here to create an app. follow step 1 of this guide to learn how to create the app and get your app details such as client ID and secret
Important Note: If you restart the Heroku Dyno it will reset the database. We don't have a way of externalizing it at the moment. You cannot easily make modifications to the code because it pulls directly from this repo, and therefore you cannot easily change any config options. Heroku is good if you have absolutely no coding experience at all and just want to see it in action. Otherwise, you're better off installing and running the bot on Ubuntu
After deploying it and it says deployed click on Manage App
Button
Now click Resources
tab
Click on the Edit Icon and turn on the worker and save
Click on more and view logs to make sure everything is fine
Thats it, Your Free Hosting is complete!
DO not use heroku, this will get your heroku account suspended. The only way to run this bot is to install using the below guide.
WSL is currently not supported. Please either use heroku or install Ubuntu in Virtualbox and use Liux instructions Please look here for a detailed guide to running on windows 10 / Linux. The other guides in this readme also work, but this is more step-by-step. Click here for the google docs link
-
change
src/settings.sample.py
tosrc/settings.py
and update the values to your account and app values -
run
run_linux.sh
-
Install docker https://docs.docker.com/install/
- Make sure you enable docker without sudo
-
Update the environment variables below with your account info
-
Paste the whole command below into your terminal
git clone https://github.com/MrPowerScripts/reddit-karma-farming-bot.git &&\
cd reddit-karma-farming-bot &&\
docker build -t=com.mrpowerscripts/mrps/reddit-karma-bot . &&\
docker run -it \
-e REDDIT_CLIENT_ID="MyCoolAppClientID" \
-e REDDIT_SECRET="MyCoolAppSecret" \
-e REDDIT_USERNAME="MyCoolUserName" \
-e REDDIT_PASSWORD="MyPasswordForTheUsername" \
-e REDDIT_USER_AGENT="script by /u/" \
--mount src="$(pwd)/src",target=/reddit-karma-bot-run,type=bind \
com.mrpowerscripts/mrps/reddit-karma-bot
- When the docker container is running you can start the bot by browsing to https://127.0.0.1:8080 The default username pass is admin/pass. It will give you an SSL warning because the CA is self-signed. Just click whatever button allows you to pass through the warning.
- The bot will store all of the stuff it learns in a folder within your home path (~) called
reddit-karma-bot
. - The bot will wait until it has 50MB worth of material learned before it will start commenting. This can take a while. The logs on the browser will tell you everything that is happening. There will also be a info.log in the
reddit-karma-bot
folder.
You can provide also a proxy server for the docker container to connect through
--e HTTPS_PROXY="https://127.0.0.1:3001"