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.

problems with NOTICEs in eggdrop 1.6.8

Old posts that have not been replied to for several years.
Locked
m
maximusXiV

Post by maximusXiV »

I'm using windrop on win2k server.

It seems the bot does not see any private or channel notices. Eg:
/notice botName blah, or
/notice #channel blah

We have a flooder that is exploiting this.
Is it me? Is there something I should set? I went trought the configs and cannot see any thing that would affect it.
Any help would be welcome.
P
Petersen
Owner
Posts: 685
Joined: Thu Sep 27, 2001 8:00 pm
Location: Blackpool, UK

Post by Petersen »

All my bots see notices fine. Perhaps your problem is that you haven't scripted it to actually do anything when it detects these notices.
m
maximusXiV

Post by maximusXiV »

Petersen,
I don't see any notices.
Here is what I have done:

1) I have logged on to the bot as master
and sent a notice to the bot from an IRC client the console showed nothing.
(/notice bot blah blah)

2)I have joined console to a channel and messaged the channel from an IRC client. Still no visible effect in the bot.
(/notice #room blah blah).

I expected a visible feedback on the console. I should see the notice. Am I wrong on this?
e
egghead
Master
Posts: 481
Joined: Mon Oct 29, 2001 8:00 pm
Contact:

Post by egghead »

maximus14, what are your console modes (.console)?
P
Petersen
Owner
Posts: 685
Joined: Thu Sep 27, 2001 8:00 pm
Location: Blackpool, UK

Post by Petersen »

you need console mode +m to see private notices, and console mode +p to see public notices.
m
maximusXiV

Post by maximusXiV »

my console settings are mpjkcobxs
I have even tried this:

bind notc - "*" testNotc

proc testNotc {nick uhost hand text {dest ""}} {
global botnick; if {$dest == ""} {set dest $botnick}
putquick("privmsg myIRCnick :text is $text nick is $nick");
}

I'm only a beginner in TCL but to me this should msg me every notice to myIRCnick.

What else can I try?
P
Petersen
Owner
Posts: 685
Joined: Thu Sep 27, 2001 8:00 pm
Location: Blackpool, UK

Post by Petersen »

no, cos putquick("privmsg myIRCnick :text is $text nick is $nick"); is wrong. should be
putquick "PRIVMSG myIRCnick :text is $text nick is $nick"
m
maximusXiV

Post by maximusXiV »

Thanks, for that hint with TCL.

OK, I found out why I cannot see NOTICES.
I had a capskick.tcl 1.1.8 by Paul Twang loaded. And alought I cannot see it binding notc this script stopped all notices from being processed. I unloaded it and I can see notices again.

I should have done it at fist. My apologies to the eggdrop coders. Nothing wrong with 1.6.8 :smile:

Now, any recommendations for caps kick script. I tried Caps-Guard 2.4.0 but it seems buggy and not working properly.
Locked