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.

Search found 26 matches

by entrapmen
Mon Aug 22, 2005 1:28 pm
Forum: Archive
Topic: some regexp problems
Replies: 12
Views: 7521

so what do you care if they use another method with no clickable links? nobody will bother to manually strip the spam and paste it in their browser - people are lazy, spammers know that; spam without clickable links is harmless (annoying yes, but that's all about it) as you say they are annoying. i...
by entrapmen
Mon Aug 22, 2005 8:01 am
Forum: Archive
Topic: some regexp problems
Replies: 12
Views: 7521

this will strip mIRC color and control codes: regsub -all {([\002\017\026\037]|[\003]{1}[0-9]{0,2}[\,]{0,1}[0-9]{0,2})} $str {} str and this will match a hotlink (clickable URL) or chan ad: regexp {(?i)(http://|www\.|irc\.|\s#)} $str thats the problem, i know those codes and was using them. but unf...
by entrapmen
Mon Aug 22, 2005 12:02 am
Forum: Archive
Topic: some regexp problems
Replies: 12
Views: 7521

about the second problem can someone help me?

i think one if and else should be enough, like if nick starts with the letter a-q do something else do nothing...
by entrapmen
Sun Aug 21, 2005 11:42 pm
Forum: Archive
Topic: some regexp problems
Replies: 12
Views: 7521

this will strip mIRC color and control codes: regsub -all {([\002\017\026\037]|[\003]{1}[0-9]{0,2}[\,]{0,1}[0-9]{0,2})} $str {} str and this will match a hotlink (clickable URL) or chan ad: regexp {(?i)(http://|www\.|irc\.|\s#)} $str thats the problem, i know those codes and was using them. but unf...
by entrapmen
Fri Aug 19, 2005 8:55 am
Forum: Archive
Topic: some regexp problems
Replies: 12
Views: 7521

some regexp problems

Hi, i was working on spammers a while ago and im back again. but now spammers get developed. they really got weird spam methods. here are some of the examples: ºwºwºwº I¤R¤C (using with color and it seem like w w w and I R C) lots of thing like that. i think they all can be catch by using "rege...
by entrapmen
Fri Oct 29, 2004 2:40 am
Forum: Archive
Topic: getting user's host
Replies: 4
Views: 1179

getting user's host

hi i m writing a script for a kind of spammer which spam's by using away messages. there is a bot on my channel which messages all users. i make something like that: set kanal "#achan" proc ctrl:filter {str} { regsub -all -- {\003[0-9]{0,2}(,[0-9]{0,2})?|\017|\037|\002|\026|\006|\007} $str...
by entrapmen
Tue Mar 16, 2004 6:43 pm
Forum: Archive
Topic: banning nickname which has joined and unban oldest bans
Replies: 5
Views: 2069

Something like this? (not tested) foreach ban [lrange [lsort -index 2 -int -decreasing [chanbans #chan]] 0 5] { pushmode #chan -b $ban } well it works partly, i add a line like putlog "$ban" and it shows the right bans. but it doesnt unban them. its about pushmode i think. any idea? im us...
by entrapmen
Tue Mar 16, 2004 3:48 pm
Forum: Archive
Topic: banning nickname which has joined and unban oldest bans
Replies: 5
Views: 2069

Something like this? (not tested) foreach ban [lrange [lsort -index 2 -int -decreasing [chanbans #chan]] 0 5] { pushmode #chan -b $ban } well it works partly, i add a line like putlog "$ban" and it shows the right bans. but it doesnt unban them. its about pushmode i think. any idea?[/code]
by entrapmen
Tue Mar 16, 2004 1:43 am
Forum: Archive
Topic: banning nickname which has joined and unban oldest bans
Replies: 5
Views: 2069

i found how to ban nick names. but the unbaning oldest 6 ban :cry: :cry: :cry: i wonder why doesnt someone reply to that topic? :( :(
by entrapmen
Sat Mar 13, 2004 5:22 pm
Forum: Archive
Topic: Need help editing mc.spam_check2.5.2.tcl
Replies: 4
Views: 1282

anyone? BTW I did post the code, someone removed it and added that link to the script. i didnt see the code (it asks a password etc) but u could add a line before +b $uhost part or newchanban. something like: set spamreport_chan "#achan" putquick "PRIVMSG $spamreport_chan :$chan $nic...
by entrapmen
Sat Mar 13, 2004 5:08 pm
Forum: Archive
Topic: cycle
Replies: 6
Views: 1641

maybe u can use this (it has been advised by someone else a few months ago to me) set cyclekanal "#zurna" set zamancycle 15 set timewait 1 bind RAW * 366 cyclestart proc cyclestart { from key arg } { global cyclekanal zamancycle set chan [lindex [split $arg] 1] if { $chan != $cyclekanal } ...
by entrapmen
Fri Mar 12, 2004 4:22 pm
Forum: Archive
Topic: banning nickname which has joined and unban oldest bans
Replies: 5
Views: 2069

banning nickname which has joined and unban oldest bans

set nekadarban 120 # 1: *!*hesap@*.domain *!*hesap@A.B.C.* # 2: *!*@domain *!*@A.B.C.D # 3: Nick!*@* set bancesidi 2 set Ban "banned: Reklam yapmayınız..!" bind join - "*gulcinn*" kotunick bind join - "*Afet^*" kotunick bind join - "*Ebru_*" kotunick global v...
by entrapmen
Tue Jan 13, 2004 5:21 pm
Forum: Archive
Topic: $bnick command against !op :P
Replies: 6
Views: 1729

Example: bind pub o ${nick} my:pub proc my:pub {nick uhost hand chan text} { switch -- [strlwr [lindex $text 0]] { "op" { #your op stuff here } default { # default stuff goes here } } } sorry about my lame but i think i couldnt fix something :-? :cry: i have changed the code like dat: bin...
by entrapmen
Tue Jan 13, 2004 2:32 pm
Forum: Archive
Topic: $bnick command against !op :P
Replies: 6
Views: 1729

how can we make these changes if we can't see the code ? :oops: :oops: you are right set dop(chanchar) "*" bind pub -|- [string trim $dop(chanchar)]op dop:cop bind pub -|- [string trim $dop(chanchar)]chaninfo dop:cchaninfo bla bla.. proc dop:cop {nick host hand chan arg} { global dop if {...
by entrapmen
Sat Jan 10, 2004 2:52 pm
Forum: Archive
Topic: $bnick command against !op :P
Replies: 6
Views: 1729

Sir_Fz wrote:remove that tcl, and use a tcl which performs commands when you type botnick command.
haha yea sure :D i have to use that script but with the changes :lol: do i want much ? :evil: :evil: