A simple reputation bot for UnKnoWnCheaTs.
features:
- positive/negative rep
- give rep without text (reputation reason)
- support for multiple accounts (check src/config/accounts.json)
- random reputation reason according to rep type (positive/negative)
- ability to add new reputation reasons (messages)
todo:
- cloudflare checks
- wrong username/password check
- being able to select a specific type of rep reason to give (lets say that you want to give a negative rep to someone but want to use a positive rep reason message)
better account picker (it will rule out accounts that were already used to give rep on the specified post)✔️- discord integration (my plan for this is to eventually transform this into a discord bot)_
🚧 more to come..
Since this is a Node application, you will need to install node
on your computer alongside npm
.
Inside the repo "root" (master) folder, open a Terminal, Command Prompt or PowerShell window and type: npm install
or npm i
(both will do the same thing)
The above command will install the necessary dependencies for the bot to work.
Now navigate to the "src" folder and open a Terminal, Command Prompt or PowerShell window there. Then type: node ./index.js post_id (post number) rep_type (positive/negative) give_rep_reason (true/false)
NOTE: The third argument will always be true
, unless you set it to false
.
node ./index.js 2568666 positive // this will give a positive rep and it will pick a random positive message from message.json file
node ./index.js 2568666 positive false // this will give a positive rep without a reputation reason (message)
node ./index.js 2568666 negative // this will give a negative rep and it will pick a random negative message from message.json file
node ./index.js 2568666 negative false // this will give a negative rep without a reputation reason (message)
This bot is not meant for mass usage. So be careful, this could get your account(s) banned.
Use this at your own risk.
Big thanks to @danielsrbastos who helped me write this code way back in 2019 and test it as well.
uc-rep-bot is available under the MIT License