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.

Universal channel script

Support & discussion of released scripts, and announcements of new releases.
Post Reply
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

dusk wrote:Hey demond,

Is it possible to make the spamprotection not reacting on # if chatters are using the channame they're in.

Sometimes people get warning when the post : Bye Bye #channel.(or something like that).

THNX
certainly yes; I'll fix that in the next release (hopefully there will be one :)
connection, sharing, dcc problems? click <here>
before asking for scripting help, read <this>
use

Code: Select all

 tag when posting logs, code
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

Godzilla wrote:Some Questions:

1) If someone get punished, when will the counter will be resetet, never?
after 720 minutes (12 hours)
2) Feature request: exception list for spam protection (own channels and webpages)
will be implemented (see my previous post)
connection, sharing, dcc problems? click <here>
before asking for scripting help, read <this>
use

Code: Select all

 tag when posting logs, code
User avatar
dusk
Halfop
Posts: 91
Joined: Sun Mar 06, 2005 7:25 pm
Location: Belgium

Post by dusk »

demond wrote:
certainly yes; I'll fix that in the next release (hopefully there will be one :)
Well, personally : I hope so, at this moment I'm using your script on ALL my bots (18 at this moment) and for me it stays , untill now, the best all-protection script ever.
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

I am considering adding the local spam scan from spambuster to xchannel (that is, forking a clone which periodically cycles the channel, intercepting eventual targeted and on-join private spam) with the rationale being that spambuster is too complicated for the average Joe to set up properly; thus the only script you'll ever need to run dealing with channel matters will be xchannel (it aims to be the ultimate channel script anyway; add to it rconsole and you are all set for anything :P

feedback is much appreciated
connection, sharing, dcc problems? click <here>
before asking for scripting help, read <this>
use

Code: Select all

 tag when posting logs, code
User avatar
dotslasher
Halfop
Posts: 62
Joined: Sun Aug 10, 2003 8:10 pm

Post by dotslasher »

hmm is it me or are colored repeats not picked up?

someone just spammed a website 9x but everytime in a different color. The bot didnt pick it up as repeating.
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

Don't you mean a channel?
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

dotslasher wrote:hmm is it me or are colored repeats not picked up?

someone just spammed a website 9x but everytime in a different color. The bot didnt pick it up as repeating.
it should have picked it as spam - that is, if you have set +x:spam for that channel
connection, sharing, dcc problems? click <here>
before asking for scripting help, read <this>
use

Code: Select all

 tag when posting logs, code
User avatar
dotslasher
Halfop
Posts: 62
Joined: Sun Aug 10, 2003 8:10 pm

Post by dotslasher »

i dont have the spam thing enabled, the website thingy was just an example, its the same with any random word in different colors
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

99.9% of all repeaters simply hit the up arrow button and spit out edit buffer history again & again

0.1% might be using scripts that embed random colors while repeating, but I won't change xchannel to cover those, seems an overkill to me
connection, sharing, dcc problems? click <here>
before asking for scripting help, read <this>
use

Code: Select all

 tag when posting logs, code
User avatar
dotslasher
Halfop
Posts: 62
Joined: Sun Aug 10, 2003 8:10 pm

Post by dotslasher »

ok fine :P

love the script though
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

you'll love it even more when I overcome my laziness and add private spam scanner (a la spambuster) and possibly dynamically generated web statistics - so you'll have the big picture, which hosts/domains are the biggest offenders
connection, sharing, dcc problems? click <here>
before asking for scripting help, read <this>
use

Code: Select all

 tag when posting logs, code
S
Sheldon
Voice
Posts: 25
Joined: Sat May 13, 2006 11:41 am

clearer warning??

Post by Sheldon »

not that i want to complain about a great script..

but some of the users are getting kicked and then asking why they wasnt warned first!!
when i explained..... they say it was'nt clear enough... as they were concentrating on the chat window?

is there anyway.. to make the warning a red colour in the main chat.... then everyone sees it

then not only does the user see it, everyone else is pre warned too?

thanks for the script though... superb ;)
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

well, the warning is sent via PRIVMSG (not notice), so it would normally pop up a message window - unless your IRC client is set up to show all PRIVMSGs in one window - which isn't the case with mIRC (the option "Use single message window" is unset by default - or so I think)

anyhow, you could make it send warnings in bold red by replacing

Code: Select all

"w" {putserv "privmsg $nick :$reason"}
with

Code: Select all

"w" {putserv "privmsg $nick :\002\0034$reason"}
connection, sharing, dcc problems? click <here>
before asking for scripting help, read <this>
use

Code: Select all

 tag when posting logs, code
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

Sheldon wrote:is there anyway.. to make the warning a red colour in the main chat.... then everyone sees it
Not always appropriate as that in itself will fill the channel with rubbish.

It would also appear some of your users ignore private messages (as I do). To have the warnings sent via notice (no one ignores them) replace:

Code: Select all

"w" {putserv "privmsg $nick :\002\0034$reason"}
with

Code: Select all

"w" {putserv "notice $nick :\002\0034$reason"}
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
k
kuto
Voice
Posts: 8
Joined: Thu Jun 01, 2006 7:28 am

problem after rehashing the bot

Post by kuto »

<gre> .chanset #ceu x:bad:file badwords.txt
<CboT> Successfully set modes { x:bad:file { badwords.txt } } on #ceu.
<CboT> [19:29] #kuto# chanset #ceu x:bad:file { badwords.txt }
<gre> .chanset #ceu x:whois:file badwhois.txt
<CboT> Successfully set modes { x:whois:file { badwhois.txt } } on #ceu.
<CboT> [19:29] #kuto# chanset #ceu x:whois:file { badwhois.txt }
<gre> .set errorInfo
<CboT> [19:29] #kuto# set errorInfo
<CboT> Currently: couldn't open "badwhois.txt": no such file or directory
<CboT> Currently: while executing
<CboT> Currently: "open $fn"
<gre> .rehash
<CboT> [19:29] #kuto# rehash
<CboT> Rehashing.
<CoT> [19:29] Writing user file...
<CboT> [19:29] Writing channel file...
<CboT> [19:29] Rehashing ...
<CboT> [19:29] Listening at telnet port 5455 (all).
<CboT> [19:29] Loading language "en" from language/gseen.en.lang...
<CboT> [19:29] xchannel-3.6: #ceu: couldn't open "badwords.txt": no such file or directory
<CboT> [19:29] xchannel-3.6: #ceu: couldn't open "badwhois.txt": no such file or directory
<CboT> [19:29] xchannel-3.6: #recto: couldn't open "badwords.txt": no such file or directory
<CboT> [19:29] xchannel-3.6: #recto: couldn't open "badwhois.txt": no such file or directory
<CboT> [19:29] xchannel-3.6: #caloocan: couldn't open "badwords.txt": no such file or directory
<CboT> [19:29] xchannel-3.6: #caloocan: couldn't open "badwhois.txt": no such file or directory
<CboT> [19:29] xchannel-3.6: #egg.ph: couldn't open "badwords.txt": no such file or directory
<CboT> [19:29] xchannel-3.6: #egg.ph: couldn't open "badwhois.txt": no such file or directory
<CboT> [19:29] xchannel-3.6 by demond loaded successfully
<CboT> [19:31] #kuto# set errorInfo
<CboT> Currently: couldn't open "badwhois.txt": no such file or directory
<CboT> Currently: while executing
<CboT> Currently: "open $fn"
can somebody fixed this error
Post Reply