mIRC Home    About    Download    Register    News    Help

Print Thread
#141075 04/02/06 12:05 PM
Joined: May 2005
Posts: 35
N
nutt3 Offline OP
Ameglian cow
OP Offline
Ameglian cow
N
Joined: May 2005
Posts: 35
Im an @ in a channel. Another @ auto invites ppls that joins another into there.. i can see all the invites, like: *someserver.ca.us.bob.net(@#channel)* bob2 invited bob into the channel.

Its driving me crazy.. is there a way to stop that from showing in my mirc??? confused

Or maybe rederict it to a seperat window?

Last edited by nutt3; 04/02/06 12:15 PM.
#141076 04/02/06 12:42 PM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
I don't understand how it is that you're seeing all of the invites. You should only be able to see the invites that you issue or that are issued to you. The only exception, that I can think of, is if you are an IRCop on that network.

In any case, you might try the following
Code:
 on *:invite:#:{ $iif($me != $nick,haltdef) } 

#141077 04/02/06 01:02 PM
Joined: May 2005
Posts: 35
N
nutt3 Offline OP
Ameglian cow
OP Offline
Ameglian cow
N
Joined: May 2005
Posts: 35
Thx for replying, but it did not do anything frown

#141078 04/02/06 01:42 PM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
Try unchecking the following setting:
mIRC Options - IRC - Show In Active - Invites

#141079 04/02/06 03:21 PM
Joined: Jun 2003
Posts: 5,024
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Jun 2003
Posts: 5,024
Some network's servers do send op notices when an op sends an invite, DALnet being one of them, for example:

-broadway.ny.us.dal.net:@#blah- Nickname invited SomeoneElse into channel #blah

This is triggered by the ON NOTICE event. You could use something like this:

on ^*:notice:*invited*:#channel:{
if (*server.domain* iswm $nick) {
halt
}
}


Change #channel for the channel name.
Change 'server.domain' for the domain of the server, for example, dal.net would be DALnet's server domain, so you'd put *dal.net* in between the wildcards.

Regards,


Mentality/Chris
#141080 04/02/06 03:22 PM
Joined: Oct 2005
Posts: 1,741
G
Hoopy frood
Offline
Hoopy frood
G
Joined: Oct 2005
Posts: 1,741
Some servers report the invites to the ops on the channel using a notice from the server (not a server notice). You will have to make a onNOTICE event that catches those messages and then halts the display.

on ^*:NOTICE:& invited & into the channel *:#:if ($1 != $me) halt

-genius_at_work

#141081 04/02/06 10:29 PM
Joined: May 2005
Posts: 35
N
nutt3 Offline OP
Ameglian cow
OP Offline
Ameglian cow
N
Joined: May 2005
Posts: 35
thx for your replys smile

#141082 04/02/06 10:50 PM
Joined: Nov 2004
Posts: 842
Hoopy frood
Offline
Hoopy frood
Joined: Nov 2004
Posts: 842
on ^*:SNOTICE:*invite*:{ haltdef }


What do you do at the end of the world? Are you busy? Will you save us?

Link Copied to Clipboard