mIRC Home    About    Download    Register    News    Help

Print Thread
#79173 13/04/04 10:26 PM
Joined: Oct 2003
Posts: 306
J
Fjord artisan
OP Offline
Fjord artisan
J
Joined: Oct 2003
Posts: 306
on ^1:TEXT:putos*:*:{ echo X te ha pateado por decir $1- | kick # $nick $1- | haltdef }


mess with the best
Joined: Oct 2003
Posts: 306
J
Fjord artisan
OP Offline
Fjord artisan
J
Joined: Oct 2003
Posts: 306
to create a list of badwords


mess with the best
Joined: Mar 2004
Posts: 111
Z
Vogon poet
Offline
Vogon poet
Z
Joined: Mar 2004
Posts: 111
eh? please specify more? are you looking to make anyone who says "putos" be kicked? in which case what you have will only kick someone if they say "putos text", to kick someone if they say "text putos text" use..
Code:
on ^1:TEXT:*putos*:*:{ echo X te ha pateado por decir $1- | kick # $nick $1- | haltdef }
 

assuming this is what you want, im still kinda confused on what your needing.

Joined: Dec 2003
Posts: 261
M
Fjord artisan
Offline
Fjord artisan
M
Joined: Dec 2003
Posts: 261
Hi. I guess you want this (with isin):
Code:
on ^1:TEXT:*:*:{
  if (putos isin $1-) {
    kick $chan $nick $1-
    haltdef
  }
}

Note: The code Zeusbwr gave to you is better, becouse it doesn't use isin...


velicha dusha moja Gospoda
Joined: Jun 2003
Posts: 5,024
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Jun 2003
Posts: 5,024
You might also find this page a good reference, takes a swear kicker a tiny bit further. (Fair warning: That page does contain offensive swear words, don't click if easily offended).

Happy scriptin' smile

Regards,


Mentality/Chris
Joined: Mar 2004
Posts: 111
Z
Vogon poet
Offline
Vogon poet
Z
Joined: Mar 2004
Posts: 111
oo mentaity /hug lol wink

Joined: Oct 2003
Posts: 306
J
Fjord artisan
OP Offline
Fjord artisan
J
Joined: Oct 2003
Posts: 306
thnx


mess with the best

Link Copied to Clipboard