mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Jun 2003
Posts: 3
B
Blitz Offline OP
Self-satisified door
OP Offline
Self-satisified door
B
Joined: Jun 2003
Posts: 3
Heya people

I have a certain person in my channel that is constantly setting away with a /me notifer. Now he says it's required for one of his other channels so i'm left with constantly getting false channel activity highlights.

So my question is, is it possible to either ignore /me's from a particular address or turn /me into an event and as such not have it highlight in that color.

There, I think that makes sense. smile

Joined: May 2003
Posts: 2,265
P
Hoopy frood
Offline
Hoopy frood
P
Joined: May 2003
Posts: 2,265
this might work,
on *:ACTION:*:#:{
if ($nick == ignorenickhere) {
halt
}
}


new username: tidy_trax
Joined: Dec 2002
Posts: 2,809
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 2,809
ON ^*:ACTION:*:#the_channel:{ if ($nick == the_nick) haltdef }

Replace #the_channel with the channel name and the_nick with the nickname, then paste it into your remotes (alt+r).

Joined: Jun 2003
Posts: 3
B
Blitz Offline OP
Self-satisified door
OP Offline
Self-satisified door
B
Joined: Jun 2003
Posts: 3
Thank's a lot people, Very quick and DAMN helpful

One more request/question, how do i use an address, not a nick (the guy also changes nick whenever he aways)

Joined: May 2003
Posts: 2,265
P
Hoopy frood
Offline
Hoopy frood
P
Joined: May 2003
Posts: 2,265
on *:JOIN:#:{
if (%igaddress == $null) && ($nick == thenick) {
.set %igaddress $address($nick,1)
}
}
on ^*:ACTION:*:#:{
if ($address($nick,1) == %igaddress) {
haltdef
}
}


new username: tidy_trax
Joined: Jun 2003
Posts: 3
B
Blitz Offline OP
Self-satisified door
OP Offline
Self-satisified door
B
Joined: Jun 2003
Posts: 3
Thanks again smile

Joined: May 2003
Posts: 2,265
P
Hoopy frood
Offline
Hoopy frood
P
Joined: May 2003
Posts: 2,265
np smile


new username: tidy_trax
Joined: Feb 2003
Posts: 2,812
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2003
Posts: 2,812
I'd think it easier and more accurate if Blitz simply added his foe's address to his User List, and took advantage of User Levels. Consider if the guy rejoins the channel as the_nick` or the_nick- because his internet connection died. His IP would change but the On Join would never catch it.

Type this only once, sometime when the_nick is on IRC.
/guser NOACTION the_nick 3

Then add this to your Remotes.
On ^NOACTION:ACTION:*:#: HALTDEF

- Raccoon


Well. At least I won lunch.
Good philosophy, see good in bad, I like!

Link Copied to Clipboard