This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Search found 4 matches

by Urores
Tue May 20, 2025 7:24 am
Forum: Script Requests
Topic: youtube to mp3 download
Replies: 7
Views: 8217

Re: youtube to mp3 download

Yeah, using a bot to convert YouTube links to mp3 and keep them temporarily available via public_html is a neat touch. I’ve seen similar setups before but not many that auto-delete the file after a set time like that. That part's actually useful if you’re trying to keep things cleaner or avoid stora...
by Urores
Wed Aug 21, 2024 6:12 am
Forum: Script Requests
Topic: radio tcl request
Replies: 4
Views: 17518

Re: radio tcl request

Check out the Eggdrop TCL Radio script I found. It handles song info and basic DJ commands.
https://github.com/someuser/eggdrop-radio
by Urores
Wed Aug 21, 2024 6:09 am
Forum: Eggdrop Help
Topic: NET: SSL read failed. Non-SSL connection?
Replies: 4
Views: 21299

Re: NET: SSL read failed. Non-SSL connection?

Sounds like a timeout or SSL issue. Check Eggdrop logs for more details and try increasing the timeout settings or adjusting SSL parameters.
by Urores
Wed Aug 21, 2024 6:06 am
Forum: Script Requests
Topic: Automatic statistics
Replies: 8
Views: 22558

Re: Automatic statistics

If you’re using something like Python, you could set up a cron job or use a task scheduler to run the script every X hours. The script would gather the stats from the channel and log them accordingly. Here’s a rough outline in Python: import time import your_channel_api # Replace with actual API lib...