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

by SpiKe^^
Fri Sep 02, 2022 11:24 am
Forum: Scripting Help
Topic: Join Part Flood Protection
Replies: 8
Views: 4268

Goga:
Try this forum thread...
http://forum.egghelp.org/viewtopic.php?t=21181
by SpiKe^^
Fri Aug 12, 2022 10:36 am
Forum: Scripting Help
Topic: clear bans set by certain chanop
Replies: 11
Views: 3251

Yup, the script ends up being quite network/server specific.
According to the list I use, the replies can be very different... <setter>, <time left> and <reason> are additions used by various servers.
by SpiKe^^
Thu Aug 11, 2022 8:16 pm
Forum: Scripting Help
Topic: clear bans set by certain chanop
Replies: 11
Views: 3251

that code seems fine to me
by SpiKe^^
Thu Aug 11, 2022 6:18 pm
Forum: Scripting Help
Topic: clear bans set by certain chanop
Replies: 11
Views: 3251

Try this... set clearbans(max) 6 bind pub n !cb clear:bans2021 proc clear:bans2021 {nick uhost hand chan text} { global clearbans nickoutput clearnicks set clearnicks [split [string trim [string tolower $text]]] set chan [string tolower $chan] set nickoutput [string tolower $nick] if {![botisop $cha...
by SpiKe^^
Wed Aug 10, 2022 9:06 pm
Forum: Scripting Help
Topic: clear bans set by certain chanop
Replies: 11
Views: 3251

Show your raw 367 reply...

Show your raw 367 reply...

According to the list I use, the replies can be very different... <setter>, <time left> and <reason> are additions used by various servers.
by SpiKe^^
Sun Aug 07, 2022 12:42 pm
Forum: Scripting Help
Topic: Snotice shun
Replies: 30
Views: 21689

Replace this line in the code...

Code: Select all

  if {$tiempo ne "" && ![regexp -nocase {^[1-9][0-9]*[dhms]$} $tiempo]} {
With something more like this...

Code: Select all

  if {$tiempo ne "" && ![regexp -nocase {^[1-9][0-9]*[dhms]$} $tiempo] && $tiempo != 0} {
by SpiKe^^
Sat Aug 06, 2022 8:42 pm
Forum: Scripting Help
Topic: Snotice shun
Replies: 30
Views: 21689

You didn't specify #s in your example....
$tiempo is in the syntax of 12h 1d 1m 1y
Adjust the regexp to cover what you see as all the choices...

Code: Select all

{^[1-9][0-9]*[hdmy]$}
by SpiKe^^
Sat Aug 06, 2022 7:28 pm
Forum: Scripting Help
Topic: look for tcl to read website info
Replies: 6
Views: 2325

json soccer info

If you have a website that will provide json soccer game info for free, please provide that address here.
by SpiKe^^
Sat Aug 06, 2022 6:23 pm
Forum: Scripting Help
Topic: Snotice shun
Replies: 30
Views: 21689

!shun nick duration reason

bind raw - notice shun-snotice proc shun-snotice {from keyword arg} { if {![string match -nocase "*shun added*" $arg]} { return } set shun [lrange $arg 1 end] putserv "privmsg #shuned :$shun" } bind pub o !shun pub:shun proc pub:shun {nick host hand chan text} { set text [regsub...
by SpiKe^^
Sat Aug 06, 2022 5:13 pm
Forum: Scripting Help
Topic: look for tcl to read website info
Replies: 6
Views: 2325

Yup. As expected that site does not provide json game info.
by SpiKe^^
Sat Aug 06, 2022 3:16 pm
Forum: Scripting Help
Topic: look for tcl to read website info
Replies: 6
Views: 2325

If you have a website that will provide json soccer game info for free, please provide that address here.
by SpiKe^^
Fri Aug 05, 2022 4:29 pm
Forum: Script Requests
Topic: Correct accidental single wildcard character banmasks
Replies: 8
Views: 2128

Code: Select all

regexp {^(\*).(\*)!(\*)@(\*)$} $ban
by SpiKe^^
Thu Aug 04, 2022 4:48 am
Forum: Script Requests
Topic: Kick Counter for only Bot's kicks & Counter Stored in Fi
Replies: 2
Views: 1480

kick counter

mvp1

Try this kick counter thread...
http://forum.egghelp.org/viewtopic.php? ... ck+counter
by SpiKe^^
Sun Jul 31, 2022 11:05 pm
Forum: Scripting Help
Topic: Error installing checkdomain.tcl
Replies: 2
Views: 1994

Maybe you could share the script here...
by SpiKe^^
Tue Jul 05, 2022 6:40 pm
Forum: Script Requests
Topic: Chatstats nick exclusion list
Replies: 3
Views: 1794

chanstats.1.3.0.tcl (w/ ExemptNickList)

a41, Try this untested hack of arfer's code... # exec tclsh "$0" ${1+"$@"} # chanstats.1.3.0.tcl (w/ ExemptNickList) # arfer <arfer.minute@gmail.com> # dalnet #Atlantis # *************************************************************************************************************...