mIRC Homepage
Posted By: nutt3 invite - 04/02/06 12:05 PM
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?
Posted By: RusselB Re: invite - 04/02/06 12:42 PM
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) } 
Posted By: nutt3 Re: invite - 04/02/06 01:02 PM
Thx for replying, but it did not do anything frown
Posted By: RusselB Re: invite - 04/02/06 01:42 PM
Try unchecking the following setting:
mIRC Options - IRC - Show In Active - Invites
Posted By: Mentality Re: invite - 04/02/06 03:21 PM
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,
Posted By: genius_at_work Re: invite - 04/02/06 03:22 PM
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
Posted By: nutt3 Re: invite - 04/02/06 10:29 PM
thx for your replys smile
Posted By: Jigsy Re: invite - 04/02/06 10:50 PM
on ^*:SNOTICE:*invite*:{ haltdef }
© mIRC Discussion Forums