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 posts that have not been replied to for several years.
Swinder
Voice
Posts: 5 Joined: Wed Aug 10, 2005 6:00 am
Post
by Swinder » Wed Aug 10, 2005 6:04 am
Hi,
Im looking for a sort of blacklist, but i want the bot to add users to the blacklist that someone else banned. So basically i want the bot to blacklist a user even if it had no interaction with the ban/user.
Thanks in advance.
Swinder!
demond
Revered One
Posts: 3073 Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:
Post
by demond » Wed Aug 10, 2005 11:47 am
this adds any foreign ban set on channel to the bot's own banlist:
Code: Select all
bind mode - "% +b" foo
proc foo {n u h c m v} {
if {$n != $::botnick} {
newchanban $c $v $::nick "added as foreign ban"
}
}