mIRC Home    About    Download    Register    News    Help

Print Thread
#120114 13/05/05 09:23 PM
Joined: Sep 2003
Posts: 84
T
Babel fish
OP Offline
Babel fish
T
Joined: Sep 2003
Posts: 84
I have an irc-bot running on my server, but if you have more then 12 channels open, he will not response to any command that listen on:

on *:text:*:#: {

He ignores this, how can I let this to work? or is this a bug?

#120115 13/05/05 09:34 PM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
With that event mIRC should respond in all channels you're in. Why don't you make it channel specific.

One channel:
On *:Text:*:#Channel: { .. }

Two channels:
On *:Text:*:#Channel1,#Channel2: { .. }

Three or more:
On *:Text:*:#Channel1,#Channel2,#Channel3,#...: { ... }

-Andy

#120116 14/05/05 08:01 AM
Joined: Sep 2003
Posts: 84
T
Babel fish
OP Offline
Babel fish
T
Joined: Sep 2003
Posts: 84
Becuse it's an secure bot and log's the channel into hash tables, so he needs to detect all events on all chanels were he is.


Link Copied to Clipboard