- Captcha Solver
- Auto Daily
- Fishing & advanced logging
- Auto Buy
- includes bait, rods, upgrades, & boosts!
- Auto Sell
- Simple, easy dashboard
- Infinite accounts
- and even more!
- Install Bun.
- Open your Terminal (Mac)/Powershell (Windows) app.
- Install Tesseract (on Windows & on Mac/Linux)
- Clone the repo from Git:
git clone https://github.com/VillainsRule/Fishy.git && cd Fishy - Install dependencies:
bun install - Run the program (
bun start) to createconfig.json, then edit it. - Run the program again (
bun start) to createtokens.txt, then edit it. (Each line should look like this:channelIdForToken discordAccountTokenExample:1033322763085152317 MTAXXXXXXXXXXXXXXXXXXXXXXXXX.) - Then, run the program!
bun start
{
"discord": {
"statuses": ["invisible", "dnd", "idle", "online"], // all the statuses your accounts can be. this will be randomized.
"loginDelay": 1500 // how fast to log the accounts in to discord
},
"dashboard": {
"port": 42002 // the dashboard URL: CHANGE IF DEVELOPER
},
"advancedLogging": true, // advanced logging, becomes overkill at >3 accounts
"disableTips": true, // if to disable those stupid tips (could confuse bot)
"autoDaily": true, // if to auto claim daily
"autoBuy": {
"rods": true, // if to auto buy/use the best rod
"bait": {
"active": true, // if to auto buy bait
"minAmount": 200, // the min number of bait bought per purchase
"maxAmount": 500, // the max number of bait bought per purchase
"preferred": "Worms" // the bait to buy
},
"boats": true // if to auto buy boats
},
"autoSell": true, // if to auto sell fish
"autoClan": {
"enabled": true, // if to automatically create a clan only you are in (self-buffs)
"descriptions": [ // all the descriptions for the clans, randomized. PLEASE change from default as these may be blacklisted sometime.
"hi",
"this is a clan",
"very cool clan",
"trust me very cool clan"
]
},
"autoBoost": {
"enabled": true, // if to auto boost (/shop boosts)
"purchaseOrder": [ // the order to buy boosts in, based off button labels
"Fish Boost (20m)",
"Treasure Boost (20m)",
"Worker (30m)",
"Fish Boost (5m)",
"Treasure Boost (5m)",
"Worker (10m)"
]
},
"delays": { // delays
"buttonClickDelay": { // how fast to click buttons
"min": 500, // min time (milliseconds)
"max": 750 // max time (milliseconds)
},
"shortBreak": { // how long is a short break
"min": 45000,
"max": 75000,
"frequency": 0.0005 // how often is a short break
},
"longBreak": {
"min": 125000,
"max": 175000,
"frequency": 0.0001
},
"commandInterval": { // how often to run commands
"min": 3000,
"max": 3250
}
}
}