try this untested script the first check sees if help isin word 1 through 4 and %nick is not found to msg that channel to say to nick to read FAQ, then if they do it again "I thought i told you to read etc..." and in the third check its goodbye for 5mins if ur op
on *:TEXT:*:#:{
if (help isin $1-4) && (!$+(%,%nick)) {
$+(%,%nick) = 1 | msg $chan $nick $+ , please read our FAQ
}
elseif (help isin $1-4) && ($+(%,$nick) == 1) {
msg $chan $nick $+ , I thought I told you to read our FAQ. | $+(%,$nick) = 2
}
elseif (help isin $1-4) && ($+(%,$nick) == 2) && ($me isop $chan) {
ban -ku300 $nick
}
}
On *:part:#:{ if ($+(%,$nick)) { unset $+(%,$nick) } }
On *:quit:{ if ($+(%,$nick)) { unset $+(%,$nick) } }