Files
duckhunt/config.json
ComputerTech312 78caccd8b4 Fix ASCII encoding issues and add robust error handling
- Add comprehensive UTF-8 decoding error handling for IRC messages
- Implement robust error handling for all command processing
- Add network connection error resilience
- Add database operation error handling
- Ensure bot doesn't crash on any input or network issues
- Maintain original duck hunt functionality without feature additions
2025-09-24 01:51:24 +01:00

20 lines
448 B
JSON

{
"server": "irc.rizon.net",
"port": 6697,
"nick": "DickHunt",
"channels": ["#ct"],
"ssl": true,
"sasl": {
"enabled": false,
"username": "duckhunt",
"password": "duckhunt//789//"
},
"password": "your_iline_password_here",
"admins": ["peorth", "computertech", "colby"],
"duck_spawn_min": 10,
"duck_spawn_max": 30,
"duck_timeout": 60,
"befriend_success_rate": 75
}