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.

Old 1.1.5 code

Old posts that have not been replied to for several years.
Locked
X
X-File
Voice
Posts: 25
Joined: Tue Feb 17, 2004 4:33 am
Contact:

Old 1.1.5 code

Post by X-File »

this was in a eggdrop1.1.5 tcl to ban people instead of just kicking. could someone pleaes update it so i can use it in 1.6.15. thank you very much.

#################
#Kick/Ban Script#
#################

bind flud - * do_floods
proc do_floods {nick userhost handle type channel} {
putserv "MODE $channel +b $userhost"
if {$type == "join"} {
putserv "KICK $channel $nick :Boot! Now you can cycle my nuts"
}
return 1;
}
User avatar
strikelight
Owner
Posts: 708
Joined: Mon Oct 07, 2002 10:39 am
Contact:

Post by strikelight »

Nothing there is 1.1.5 specific, as such, it should work fine on 1.6.x as well.
Locked