5

I want to clear my IRC channel view from a certain bot messages. It is possible?

In http://webchat.freenode.net/ i can't ignore a bot with /ignore. How can I do it?

Jeff Atwood
  • 24,142
Jader Dias
  • 15,996

7 Answers7

27

Yes, just use the /ignore [user] command.

TJ L
  • 1,939
11

A bit of extra info, you can also do /ignore user@host or /ignore *@host which is useful if people change nicks

Rob
  • 669
7

The IRC protocol doesn't provide any commands for this. Certain programs that use the protocol have ignore features while others don't.

Grault
  • 155
Christian
  • 2,264
3

Try

/ignore (botname) chan

or

/ignore (botname) all

The first ignores in channel, the second says in all situations.

sDrewth
  • 31
2
/ignore -c user*!@*

For Example:

/ignore -c XDCCBOT*!@* will ignore all users with XDCCBOT prefix. I.e. XDCCBOT1234@anyhost.com

The -c flag is to ignore messages from user sent to the Channel only, and you will still be able to recieve CTCP/DCC replies etc.

Alex
  • 1,853
1

/ignore usually works

Rook
  • 23,873
1

I believe that you can do:

/ignore user

RSolberg
  • 1,220