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.

Can Someone can give it a time and change it to mirc script.

Old posts that have not been replied to for several years.
Locked
B
Bingooss
Voice
Posts: 11
Joined: Sun Sep 19, 2004 6:32 pm

Can Someone can give it a time and change it to mirc script.

Post by Bingooss »

Hello everyone:-

I use a script which kicks and ban the chatter if someone while staying in the channel ,changes his nick to some bad nick. LIke if somene change his nick while he is present in the channel he get kicked..

the script is..


###############################################
#Badnick scans
set badnicks {
"asswipe"
"cock"
"sexy"
}

set arg.v "Change Badnick protection"

bind nick - * Detected_changebad

proc Detected_changebad {nick uhost hand chan newnick} {
global badnicks botnick
if {(![matchattr $hand b]) && ($nick != $botnick)} {
foreach badchange [string tolower $badnicks] {
if {[string match *$badchange* [string tolower $newnick]]} {
set banmask "*!*[string range $uhost [string first "@" $uhost] end]"
putserv "MODE $chan +b $banmask"
putserv "KICK $chan $newnick :(Bad Nick)"
return 0
}
}
}
}


###############################################


If anyone of you have time can he change this script for me so that i can load this scirpt in my mirc as an addon. Advanced thanks if someone can give some time to it..

With REgards..

Bingooss....
User avatar
^DooM^
Owner
Posts: 772
Joined: Tue Aug 26, 2003 5:40 pm
Location: IronForge
Contact:

Post by ^DooM^ »

If you bothered to check the tcl archive you would of found the scripts you needed.

Click Me
The lifecycle of a noob is complex. Fledgling noobs gestate inside biometric pods. Once a budding noob has matured thru gestation they climb out of their pod, sit down at a PC, ask a bunch of questions that are clearly in the FAQ, The Noob is born
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

^DooM^ wrote:If you bothered to check the tcl archive you would of found the scripts you needed.

Click Me
Bingooss wrote:change this script for me so that i can load this scirpt in my mirc
This site is for eggdrop and TCL help not for converting TCL scripts to a "language" no one here knows (or cares to know).

I suggest you visit the mIRC Message Board
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
User avatar
^DooM^
Owner
Posts: 772
Joined: Tue Aug 26, 2003 5:40 pm
Location: IronForge
Contact:

Post by ^DooM^ »

oops Bad me for not reading his post properly. i just saw the word mirc and got annoyed instantly :P
The lifecycle of a noob is complex. Fledgling noobs gestate inside biometric pods. Once a budding noob has matured thru gestation they climb out of their pod, sit down at a PC, ask a bunch of questions that are clearly in the FAQ, The Noob is born
O
Ofloo
Owner
Posts: 953
Joined: Tue May 13, 2003 1:37 am
Location: Belguim
Contact:

Post by Ofloo »

lol
XplaiN but think of me as stupid
Locked