An automated fishing bot for Fishing Frenzy that intelligently manages energy and fishing ranges.
- Energy-Aware Fishing: Automatically selects fishing ranges based on available energy
- 24/7 Operation: Continuous fishing with automatic retry system
- Energy Tracking: Monitors energy levels and waits for refresh when depleted
- Detailed Logging: Comprehensive console logs with color-coded status updates
- Error Handling: Robust error recovery and connection management
- Node.js (v14 or higher)
- Valid Fishing Frenzy authentication token
- Clone the repository:
git clone https://github.com/airdropinsiders/FishingFrenzy-Auto-Bot.git
cd FishingFrenzy-Auto-Bot
- Install dependencies:
npm install
- Create a
token.txt
file in the root directory and paste your Fishing Frenzy authentication token:
echo "YOUR_TOKEN_HERE" > token.txt
Start the bot:
npm start
You can customize the bot's behavior by modifying the configuration variables in index.js
:
const config = {
authToken: authToken,
apiBaseUrl: 'https://api.fishingfrenzy.co',
wsUrl: 'wss://api.fishingfrenzy.co',
fishingRange: 'mid_range', // default: mid_range
is5x: false,
delayBetweenFishing: 5000,
retryDelay: 30000,
maxRetries: 5,
energyRefreshHours: 24, // Energy refreshes every 24 hours
// Energy cost for each fishing range
rangeCosts: {
'short_range': 1,
'mid_range': 2,
'long_range': 3
}
};
The bot intelligently selects fishing ranges based on your available energy:
short_range
: Costs 1 energymid_range
: Costs 2 energylong_range
: Costs 3 energy
When energy is depleted, the bot will wait for the energy refresh time (default: 24 hours).
To obtain your authentication token:
- Log in to Fishing Frenzy
- Open browser developer tools (F12)
- Go to Application tab → Local Storage → fishingfrenzy.co
- Copy the token value (without quotes)
- Paste it into your
token.txt
file
This bot is provided for educational purposes only. Use of automated scripts may violate Fishing Frenzy's terms of service. Use at your own risk.
This project is licensed under the MIT License - see the LICENSE file for details.
Contributions are welcome! Please feel free to submit a Pull Request.
For questions or support, please open an issue on the GitHub repository.