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^^
Sat Dec 11, 2021 12:10 pm
Forum: Scripting Help
Topic: Auto announcement every 10 min after nick gets halfop
Replies: 31
Views: 10370

Code: Select all

set ::ish($target) [timer 1 [list repeat:announcement $chan $target] 0]
by SpiKe^^
Tue Dec 07, 2021 12:31 pm
Forum: Script Requests
Topic: Text Format Conversion
Replies: 7
Views: 7090

formatfile2.tcl v0.3 by SpiKe^^

### Trivia Question File Format Converter 2 ### # formatfile2.tcl v0.3 by SpiKe^^ (7Dec2021) # ### Public command: .format2 :will convert trivia files from... # # 1. Question: What year did Disneyland open? # Answer: 1955. # # ...to something more like: # 1955|What year did Disneyland open? ### You...
by SpiKe^^
Wed Dec 01, 2021 2:19 pm
Forum: Script Requests
Topic: Text Format Conversion
Replies: 7
Views: 7090

formatfile.tcl v0.1 by SpiKe^^

Try this updated script... ### Trivia Question File Format Converter *** # formatfile.tcl v0.1 by SpiKe^^ (1Dec2021) * # This script will convert trivia files from Q*A to A|Q # # Also convert Q*A1*A2*A3 to A1|Q (uses first answer) # # Also adds a ? to the end of questions, if has none # # Also remov...
by SpiKe^^
Tue Nov 30, 2021 4:05 pm
Forum: Scripting Help
Topic: error in init-server
Replies: 3
Views: 2666

That's not an error, it's a notice.
In this case it means little to nothing.
by SpiKe^^
Tue Nov 30, 2021 11:50 am
Forum: Script Requests
Topic: Text Format Conversion
Replies: 7
Views: 7090

this script replies to the message command .formatfile from a user with the global userfile flag(s) m, n, and/or o rename the original file to old.file put that file in the eggdrop scripts/ dir message the bot with .formatfile the new file will be at scripts/new.file bind msg mno .formatfile format:...
by SpiKe^^
Mon Nov 29, 2021 1:39 am
Forum: Script Requests
Topic: Detecting identical nicks within time frame
Replies: 34
Views: 9423

simo: This script separates out the custom queue part of the clonednicks.tcl Look this over and see if it helps explain the custom queue any... #### pushkick.tcl ver 0.1 by SpiKe^^ (27Nov2021) #### ##### ??? New Eggdrop Tcl Command ??? ##### # I believe that Eggdrop should have a new tcl command cal...
by SpiKe^^
Thu Nov 25, 2021 3:04 pm
Forum: Script Requests
Topic: Detecting identical nicks within time frame
Replies: 34
Views: 9423

clonednicks.tcl ver 0.2 by SpiKe^^

Updeted script with mode +R lock and partial nick ban? #### clonednicks.tcl ver 0.2 by SpiKe^^ (25Nov2021) #### bind join - * join:clonednicks proc join:clonednicks {nick uhost hand chan} { global cnicks cnickq if {[isbotnick $nick] || ([string length $nick] < 6)} { return 0 } if {[matchattr $hand f...
by SpiKe^^
Thu Nov 25, 2021 10:36 am
Forum: Script Requests
Topic: Detecting identical nicks within time frame
Replies: 34
Views: 9423

According to the above quote the whole deal was done in under 2/10ths of a second...

Show the channel logs when it doesn't.
by SpiKe^^
Thu Nov 25, 2021 9:40 am
Forum: Script Requests
Topic: Detecting identical nicks within time frame
Replies: 34
Views: 9423

OK, sounds like that code is fine.
Thanks
by SpiKe^^
Thu Nov 25, 2021 1:39 am
Forum: Script Requests
Topic: Detecting identical nicks within time frame
Replies: 34
Views: 9423

Thanks for not bothering to tell me about the variable name issue. What's the difference between if opered and not? Are you changing the putquck to putnow? Explain what you are doing to make it speed up and slow down. That wouldn't be anything the script could change there? Try speeding up the queue...
by SpiKe^^
Thu Nov 25, 2021 12:28 am
Forum: Script Requests
Topic: Detecting identical nicks within time frame
Replies: 34
Views: 9423

fixed variable name

FIXED a variable naming issue from some reused code in proc dobans:clonednicks in the script post above. ##putserv "KICK $ch $nicks :!!! Indentical nicks !!!" putserv "KICK $chan $nicks :!!! Indentical nicks !!!" Download the edited ver 0.1 script and try your tests again.
by SpiKe^^
Wed Nov 24, 2021 11:50 am
Forum: Script Requests
Topic: Detecting identical nicks within time frame
Replies: 34
Views: 9423

clonednicks.tcl ver 0.1 by SpiKe^^

untested. goodluck. #### clonednicks.tcl ver 0.1 by SpiKe^^ (24Nov2021) #### bind join - * join:clonednicks proc join:clonednicks {nick uhost hand chan} { global cnicks cnickq if {[isbotnick $nick] || ([string length $nick] < 6)} { return 0 } if {[matchattr $hand f|f $chan]} { return 0 } set chan [s...
by SpiKe^^
Tue Nov 23, 2021 9:58 am
Forum: Script Requests
Topic: Detecting identical nicks within time frame
Replies: 34
Views: 9423

rem out the flushmode line
by SpiKe^^
Mon Nov 08, 2021 12:00 pm
Forum: Scripting Help
Topic: counting digits and if it exceeds threshold set mute
Replies: 37
Views: 10970

simo : I don't notice any of that weirdness happening.

Load the full patched version of the script from above.
You already verified [lsearch -nocase -exact... fixed that issue.
by SpiKe^^
Mon Nov 08, 2021 11:11 am
Forum: Scripting Help
Topic: counting digits and if it exceeds threshold set mute
Replies: 37
Views: 10970

This is the complete updated code to this point... set whatsapp(maxlength) 5 set whatsapp(unsettime) 20 bind pubm - * 112345check:whatsapp proc 112345check:whatsapp {nick host hand chan text} { global whatsapp set text [stripcodes c $text] if {![string match {*[0-9]*} $text]} { return 0 } set nkls [...