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 68 matches

by NewzNZ
Wed Feb 21, 2024 6:37 pm
Forum: Eggdrop Help
Topic: crontab -noemail
Replies: 4
Views: 3400

Re: crontab -noemail

Will give that a go...thanks!
by NewzNZ
Sun Jul 09, 2023 7:41 pm
Forum: Eggdrop Help
Topic: crontab -noemail
Replies: 4
Views: 3400

thanks will try that...(& sorry for the slow reply!)
by NewzNZ
Thu Jun 29, 2023 4:12 am
Forum: Eggdrop Help
Topic: Crash!
Replies: 3
Views: 4716

...had the same crash today...have logged it as per the report message.
by NewzNZ
Fri Jun 09, 2023 11:22 pm
Forum: Eggdrop Help
Topic: crontab -noemail
Replies: 4
Views: 3400

crontab -noemail

Hi there

Am just trying to re-set up my bot crontabs to not send emails but not having much luck.

Am currently using:
./autobotchk mybot.conf -noemail -5

...but it still sends an email on the 5 minute checks.

Any ideas would be appreciated...thanks!
by NewzNZ
Mon May 01, 2023 6:12 pm
Forum: Scripting Help
Topic: detecting special characters ⚠️
Replies: 2
Views: 3106

Thanks for that...will take a look!
by NewzNZ
Mon May 01, 2023 5:01 pm
Forum: Scripting Help
Topic: detecting special characters ⚠️
Replies: 2
Views: 3106

detecting special characters ⚠️

Hi there Am using a script to pull headlines from an RSS feed & just wondering if there's a way to detect special characters in a string to set up an ignore? One of the offending characters is: ⚠️ Have tried: if {[string match *⚠️* $var]} { and: if {[string match *\⚠️* $var]} { ...but no luck. A...
by NewzNZ
Wed Apr 26, 2023 7:14 pm
Forum: Scripting Help
Topic: tls::socket question
Replies: 2
Views: 3967

Thanks...will give that a go...

Thanks for the help!
by NewzNZ
Wed Apr 26, 2023 5:21 am
Forum: Scripting Help
Topic: tls::socket question
Replies: 2
Views: 3967

tls::socket question

Hi there I have a bot script running fine on one host provider, but on a second host provider I get an error when using the same script: script extract: ::http::register https 443 [list ::tls::socket -autoservername true] error: wrong # args: should be "tls::socket ?options? host port" Jus...
by NewzNZ
Sun Oct 16, 2022 10:46 pm
Forum: Script Requests
Topic: v.gd or is.gd url shortener
Replies: 0
Views: 16519

v.gd or is.gd url shortener

Hi there I was using the v.gd or and/or is.gd url shorteners via a tcl script when sending news items to my channel...but I haven't been able to return any urls from those sites any for some time despite nothing appeared to have changed with the site... Just wondering if anyone had any experience us...
by NewzNZ
Tue Aug 30, 2022 5:16 pm
Forum: Scripting Help
Topic: url shortener
Replies: 9
Views: 4092

Thanks...will send them a message.
Appreciate the help!
by NewzNZ
Mon Aug 29, 2022 8:35 pm
Forum: Scripting Help
Topic: url shortener
Replies: 9
Views: 4092

ps not sure if it helps but the script I use for tinyurl is:

Code: Select all

set query [::http::geturl http://tinyurl.com/api-create.php?url=$someurl]
	set url [lindex [split [::http::data $query] \n] 0]
...and it seems to work without the https even though tinyurl is also an https site?
by NewzNZ
Mon Aug 29, 2022 7:12 pm
Forum: Scripting Help
Topic: url shortener
Replies: 9
Views: 4092

added to top of script:

package require http
package require tls

but bot quit with this error when rehashed:

Tcl error in file 'i.conf':
can't find package tls
while executing
"package require tls"
by NewzNZ
Mon Aug 29, 2022 5:23 pm
Forum: Scripting Help
Topic: url shortener
Replies: 9
Views: 4092

Thanks for this - looks like perhaps my shell provider dosn't have the needed items as it's still returning an empty url...
Thanks anyway.
by NewzNZ
Sun Aug 28, 2022 12:27 am
Forum: Scripting Help
Topic: url shortener
Replies: 9
Views: 4092

Thanks & apologies for the spectacularly slow reply:

Code: Select all

set query [::http::geturl http://v.gd/create.php?url=$somelongurltoshorten&format=simple]
set url [lindex [split [::http::data $query] \n] 0]
putserv "PRIVMSG $channel :$url"
Thanks again!
by NewzNZ
Sat Jul 30, 2022 7:58 pm
Forum: Scripting Help
Topic: url shortener
Replies: 9
Views: 4092

url shortener

Hi there I had been running a script to use v.gd and is.gd for delivering shortened urls of news stories to a channel...but lately has been returning nothing despite the sites appearing to still be working. Was wondering if anyone has had experience using these sites in scripts? Currently the only o...