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.

I think this script is impossible, help with clone detection

Old posts that have not been replied to for several years.
Locked
o
oihattrick

I think this script is impossible, help with clone detection

Post by oihattrick »

hello, (this is my first post)
sorry to come off a bit rude, but i am looking for a script and cannot find it anywhere.

Heres a summary...
I am looking for a .tcl script that when a user joins it will:

1-Check to see if the person entering the channel is a clone
2-Check to see if the person entering the channel has either voiced or opped status in the channel
3-If the person has voiced/opped status, it will not be effected by #4.
4-If the user is a clone, kick them, ban them for 24 hours
5-If the same hostmask comes back after 24 hours, and clones again, permanent ban

so...

User enters->check for clones->check for ops/voice->kb on clone if no ops/voice


i do not want to have to set flags on users.
Due to the fact that the channel it will be running in, is fairly big (250+ on 1 chan, 200+ on the other)


thanks for you help :D
User avatar
Sir_Fz
Revered One
Posts: 3794
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

have you checked the TCL archive ? I think there are similar scripts.
o
oihattrick

Post by oihattrick »

yes,
none of them have options for both voiced and opped users :oops:
i
inferno
Voice
Posts: 17
Joined: Thu Jun 05, 2003 2:46 pm

Post by inferno »

Well u cant everytime find a script that fits all what u need
just get a normal clone scanner script, edit it and put this line
on the kicking part of the script:
[code]if {[nick isop #chan] || [nick isvoice $chan]} {return 0}
this will prevent the eggy from kicking ops/voiced users
i
inferno
Voice
Posts: 17
Joined: Thu Jun 05, 2003 2:46 pm

Post by inferno »

hey nevermind about the word : [code]
dont write it in the script
Locked