mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Sep 2005
Posts: 13
S
ShAlkE Offline OP
Pikka bird
OP Offline
Pikka bird
S
Joined: Sep 2005
Posts: 13
I want a bad word script that bans for 15 min the one who use a bad word example of words "sex,lame,etc"

And if somebody repets a word 3 time he gets ban.. olso 15...
and if you can add a reason..

ty!

Last edited by ShAlkE; 19/12/05 03:34 PM.
Joined: Feb 2004
Posts: 2,019
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2004
Posts: 2,019
I want a large portion of fries, a big kahuna hamburger, and a medium-sized Cola to wash it all down.

Ty!


Gone.
Joined: Sep 2005
Posts: 13
S
ShAlkE Offline OP
Pikka bird
OP Offline
Pikka bird
S
Joined: Sep 2005
Posts: 13
confused confused confused confused confused confused confused confused

Joined: Sep 2005
Posts: 13
S
ShAlkE Offline OP
Pikka bird
OP Offline
Pikka bird
S
Joined: Sep 2005
Posts: 13
PLEASE!

frown

Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
FibreOptics was playing a joke on your nick (I think), noting how close it is to the word shake.

Bad word scripts have been done a number of times. Search the forum, and don't forget to expand the date range, as the default is only a week.

You also might try searching Hawkee, mIRC.Net and/or mIRC Scripts.org

You should be able to find something on one of those.

Joined: Jul 2004
Posts: 59
S
Babel fish
Offline
Babel fish
S
Joined: Jul 2004
Posts: 59
He was more making a joke about how this guy is just saying what he wants.



Joined: Sep 2005
Posts: 13
S
ShAlkE Offline OP
Pikka bird
OP Offline
Pikka bird
S
Joined: Sep 2005
Posts: 13
i can`t find :<<<<

Joined: Feb 2004
Posts: 2,019
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2004
Posts: 2,019
Exactly!


Gone.
Joined: Aug 2005
Posts: 18
M
Pikka bird
Offline
Pikka bird
M
Joined: Aug 2005
Posts: 18
The following code will let you add words to a bad word hash table and kick if those words are used anywhere in a sentence.
Code:
on *:start: {
  hmake Bad 10
  if ($exists(Bad.txt)) hload Bad Bad.txt
} 

on *:TEXT:*:#: {
  if (!adbt == $1) &amp;&amp; ($nick isop $chan) {
    hadd -m Bad Text $addtok($hget(Bad,Text),$2-,32)
    msg $nick $2- Added To Text Table Boss
    hsave -o Bad Bad.txt
  }
}
on ^*:TEXT:*:*: {
  var %r = 1 
  while (%r &lt;= $calc($count($1-,$chr(32)) +1)) {
    if ($istok($hget(Bad,Text),[ $eval($+($chr(36),%r),2) ],32)) &amp;&amp; ($nick != $me) {
      access # add deny $ial($nick,1).addr 15 : Bad Word 
      kick $chan $nick Please Dont Use That Word Here (15 Minute ban.) 
      halt 
    } 
    inc %r 
  } 
}

Joined: Sep 2005
Posts: 13
S
ShAlkE Offline OP
Pikka bird
OP Offline
Pikka bird
S
Joined: Sep 2005
Posts: 13
THX VERY MUTCH!


Link Copied to Clipboard