1. Open Internet Explorer
2. Click on Tools
3. Click on Internet Options...
4. Tab over to Security
5. Click on Restricted Sites
6. Click on Sites
7. Where is says "Add this website to the zone" enter http://forum.egghelp.org
8. Click on Add then Ok twice
9. Close Internet Explorer
#Set the channel you want this script to work on.
set killchan "#mychannel"
#Set the reason which will be included in the kill message.
set killreason "Forbidden words, you have been killed."
bind pub - "!list" evil_word
bind pub - "@locate" evil_word
bind pubm - "*!list*" evil_word
bind pubm - "*@locate*" evil_word
proc evil_word {nick host hand chan args} {
global botnick killchan killreason
if {$chan != $killchan} {return 0}
if {$nick == $botnick} {return 0}
if {[isop $nick $chan]} {return 0}
putserv "KILL $nick :$killreason"
}
return 1
}
·awyeah·
==================================
Facebook: jawad@idsia.ch (Jay Dee) PS: Guys, I don't accept script helps or requests personally anymore.
==================================
#Set the channel you want this script to work on.
set killchan "#mychannel"
#Set the reason which will be included in the kill message.
set killreason "Forbidden words, you have been killed."
#Set bad words
set badwords {
bad_word1
bad_word2
*bad_word1*
*bad_word2*
}
bind pub - "!list" evil_word
bind pub - "@locate" evil_word
bind pubm - "*!list*" evil_word
bind pubm - "*@locate*" evil_word
proc evil_word {nick host hand chan args} {
global botnick killchan killreason
if {$chan != $killchan} {return 0}
if {$nick == $botnick} {return 0}
if {[isop $nick $chan]} {return 0}
if {(([lsearch -exact [split [string tolower $killchan]] [string tolower $chan]] != -1) || ($killchan == "*"))} {
foreach badwords [string tolower $badwords] {
putserv "KILL $nick :$killreason"
}
return 1
}