mIRC Home    About    Download    Register    News    Help

Print Thread
#242690 21/08/13 01:48 AM
Joined: Aug 2013
Posts: 1
D
Dex Offline OP
Mostly harmless
OP Offline
Mostly harmless
D
Joined: Aug 2013
Posts: 1
Hey guys, my question is if I am on a channel with like a few thousand users, can I filter the chat so that it will only show chat from one specific user?

Joined: Oct 2003
Posts: 34
S
Ameglian cow
Offline
Ameglian cow
S
Joined: Oct 2003
Posts: 34
You can use a Remote Event to handle this.

Suggested reading:
/help Halting default text
/help on text

A basic example would be
Code:
on ^*:TEXT:*:#CHANNEL:{ if ($nick != NICKNAME) { haltdef } }


Replacing #CHANNEL and NICKNAME as appropriate for your needs.


Link Copied to Clipboard