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

by heartbroken
Thu Mar 16, 2017 12:35 am
Forum: Script Support & Releases
Topic: Pandorabot.tcl
Replies: 71
Views: 81730

Could you test this : http://paste.tclhelp.net/?id=6cfb Replace it with your own settings. and change http://www.pandorabots... links to https pandorabots urls redirecting http to https now and i couldn't see any lines about to check this redirected links and callback to 'new url' in the script. so ...
by heartbroken
Wed Mar 15, 2017 8:35 pm
Forum: Script Support & Releases
Topic: Pandorabot.tcl
Replies: 71
Views: 81730

#Bot's Nickname to Respond to: ex. MyBot - Usage: MyBot, what's 1+1? set pandoraNick "MyBot" #Your Pandora Bot ID. (Feel free to use the existing one if you want, but the bot will think its name is AlphaBot set botid "a5cd504e4e342614" #STOP EDITING HERE package require http if ...
by heartbroken
Sat Jun 06, 2015 10:25 pm
Forum: Scripting Help
Topic: Time is displayed wrong in the party line and the script
Replies: 2
Views: 4928

I don't even known where do you live and which timezone but these settings for GMT+3 , be sure env(TZ) line looks like this : set env(TZ) "$timezone$offset" in .conf and check : http://eggwiki.org/Eggdrop.conf#Basic_settings # If you don't want to use the timezone setting for scripting pur...
by heartbroken
Thu Jun 04, 2015 9:30 pm
Forum: Scripting Help
Topic: Read https website
Replies: 8
Views: 18348

I made couple of tests to see how Works with other https sites whoever using cloudflare service. I found a list of websites at cloudflare's document pages. ( to be honest ,first i thought maybe this problem caused build link between your site to cloudflare. but...) in my tests i've seen that i can g...
by heartbroken
Wed May 27, 2015 4:45 pm
Forum: Scripting Help
Topic: Read https website
Replies: 8
Views: 18348

I'm just tested on wish. it is works. http://i.imgur.com/tdaX17R.png I don't think this issue caused tls::socket looks working good with http::register https 443 [list ::tls::socket -tls1 1] ] or http::register https 443 ::tls::socket Must be something else , but I didn't understand what goes wrong...
by heartbroken
Tue Mar 24, 2015 1:08 am
Forum: Scripting Help
Topic: change filenames
Replies: 3
Views: 5310

by heartbroken
Mon Mar 23, 2015 2:23 pm
Forum: Script Requests
Topic: anti repeat from multi host/ip
Replies: 106
Views: 125557

change :

Code: Select all

 if {[lsearch [dict keys [dict get $md5hashes $chan] $hash]] != -1} { 
to

Code: Select all

 if {[lsearch [dict keys [dict get $md5hashes $chan]] $hash] != -1} { 
by heartbroken
Fri Aug 08, 2014 10:45 pm
Forum: Scripting Help
Topic: How to do string match for IRC Action?
Replies: 5
Views: 6577

bind ctcp - ACTION reply:action proc reply:action {nick uhost hand dest key text} { if {![string match -nocase "*goes*sleep*" $text] || \ ![string match -nocase "*want*sleep*" $text] && $dest eq $::botnick} { return } if {[string equal -nocase "JaySon" $nick]} ...
by heartbroken
Fri Aug 08, 2014 9:10 pm
Forum: Scripting Help
Topic: How to do string match for IRC Action?
Replies: 5
Views: 6577

bind ctcp - ACTION reply:action proc reply:action {nick uhost hand dest key text} { if {[string match -nocase "*goes*sleep*" $text] || \ [string match -nocase "*want*sleep*" $text] && $dest ne $::botnick} { puthelp "PRIVMSG $dest :$nick, don't fall asleep" } } ...
by heartbroken
Tue Aug 05, 2014 7:44 am
Forum: Script Requests
Topic: Please Help Repair
Replies: 2
Views: 4820

that astrologer.... url doesn't exists anymore, it redirects to another web site...

but if you still wants to get horoscopes from that link;
you can find it in -> http://forum.egghelp.org/viewtopic.php?t=19697 here...
by heartbroken
Tue Jul 29, 2014 12:56 am
Forum: Scripting Help
Topic: setudef flag not working
Replies: 3
Views: 5242

well both are same actually... first one says" if $chan has that-flag,lets do this work..."

second one says " if we don't have that-flag ,won't do anything ..."
by heartbroken
Tue Jul 29, 2014 12:43 am
Forum: Scripting Help
Topic: setudef flag not working
Replies: 3
Views: 5242

setudef flag not working because : there is only setudef flag ... line outside of the procs , it doesn't check if this defined channel flag activated on $chan in the procs... there are only checks that : if $spy(chan) equivalence to $channel .. in every proc -> https://www.tcl.tk/man/tcl8.6/TclCmd/s...
by heartbroken
Sat Jul 26, 2014 2:02 am
Forum: Scripting Help
Topic: $arg is not being returned?
Replies: 3
Views: 5604

you need bind pub instead of pubm there... and you already have "global" line for "givechan" in give proc.. you have to choose one of : global givechan .. $givechan or remove "global" line and just use : .. $::givechan set givechan "#daigo" bind pub - !give pu...
by heartbroken
Thu Jul 10, 2014 7:11 am
Forum: Script Requests
Topic: Updated horoscope pls
Replies: 30
Views: 32574

i just check it once again and i follow it on partyline ,but i didn't get any err ... anyway i re-edit to , if that "houtput" thingy exists or not in this edit... should fixed the err with this way. package require http # to activate on a #channel : .chanset #channel +horo setudef flag hor...
by heartbroken
Wed Jul 09, 2014 8:22 am
Forum: Script Requests
Topic: Updated horoscope pls
Replies: 30
Views: 32574

package require http # to activate on a #channel : .chanset #channel +horo setudef flag horo bind pub - .horo horo_pub proc horo_pub {nick uhost hand chan text} { if {![channel get $chan horo]} { return 0 } set q [lindex [split [string tolower $text]] 0] set horos "Aries|Taurus|Gemini|Cancer|L...