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

by ZeleD
Wed Mar 10, 2004 8:40 am
Forum: Archive
Topic: Ban flooders ?
Replies: 12
Views: 2825

Re: The script!

Xpert wrote:
ZeleD wrote:if {$type == "pub"} {
Sorry, my mistake.
No problem m8.... Found the error..... Still, you get the credit for the main thing
by ZeleD
Wed Mar 10, 2004 5:28 am
Forum: Archive
Topic: Ban flooders ?
Replies: 12
Views: 2825

The script!

Should anyone need such a script I will post here as the one posted by xpert was faulty. # Enter channels list set channels [list "channel" "channel"] bind flud - * flooded proc flooded {nick uhost handle type channel} { global channels set chan [string tolower $channel] if {$typ...
by ZeleD
Wed Mar 10, 2004 4:38 am
Forum: Archive
Topic: Ban flooders ?
Replies: 12
Views: 2825

YooHoo wrote:and setting set ban-time 5 in the conf file wouldn't do this exact thing, without the need for the script, as you originally asked?
No, as the bot only kicks the user
by ZeleD
Tue Mar 09, 2004 10:53 am
Forum: Archive
Topic: Ban flooders ?
Replies: 12
Views: 2825

Thanks alot m8.

You just spared me a great time
by ZeleD
Tue Mar 09, 2004 8:17 am
Forum: Archive
Topic: Ban flooders ?
Replies: 12
Views: 2825

Great!

Xpert wrote:Well, for that i think you need a TCL script.
Okay, thought so....

any clues on how to detect the flooding event ?
by ZeleD
Mon Mar 08, 2004 5:02 pm
Forum: Archive
Topic: Ban flooders ?
Replies: 12
Views: 2825

Well yes.

I have

.chanset #channel 5:20

This way users sending 5 or more messages will kick the user.....

But I want the user banned for 5 minutes.
by ZeleD
Mon Mar 08, 2004 11:40 am
Forum: Archive
Topic: Ban flooders ?
Replies: 12
Views: 2825

Ban flooders ?

Is there a way ban flooders without scripting ?

I want to temp. ban users who violate my flooding settings.

I know theres severel scripts out there, but as I tend to use my own scripts (that way I know why it fails :evil: ) and want to know if it can be done without scripting
by ZeleD
Fri Nov 21, 2003 9:18 pm
Forum: Archive
Topic: problem with proc and global vars
Replies: 2
Views: 1367

problem with proc and global vars

This little test with timers give an error: Tcl error in script for 'timer46': can't read "looptimer": no such variable set trigger "0" set looptimer "1" if {![info exists timer_set]} { set timer_set [timer $looptimer "timer:action"] } proc timer:action {} { g...
by ZeleD
Thu Nov 20, 2003 6:37 pm
Forum: Archive
Topic: Newb ... first script Q
Replies: 4
Views: 1118

Inserting a "proc" infront the showcommands { solved it. Thanxs Yeah, found it... BUT putlog "Starting testscript" bind pub - !commands showcommands showcommands {nick uhost hand chan msg} { putserv "NOTICE $nick : You suck" } Doesn't change anything still says Tcl erro...
by ZeleD
Thu Nov 20, 2003 6:34 pm
Forum: Archive
Topic: Newb ... first script Q
Replies: 4
Views: 1118

Yeah, found it... BUT putlog "Starting testscript" bind pub - !commands showcommands showcommands {nick uhost hand chan msg} { putserv "NOTICE $nick : You suck" } Doesn't change anything still says Tcl error [script:load]: no value given for parameter "hand" to "sh...
by ZeleD
Thu Nov 20, 2003 6:17 pm
Forum: Archive
Topic: Newb ... first script Q
Replies: 4
Views: 1118

Newb ... first script Q

putlog "Starting testscript" bind pub - !commands showcommands showcommands {nick uhost hand chan} { putserv "NOTICE $nick : blablablabla" } This gives Tcl error [script:load]: no value given for parameter "hand" to "showcommands" What is wrong ?