mIRC Home    About    Download    Register    News    Help

Print Thread
#144647 12/03/06 07:27 PM
Joined: Feb 2003
Posts: 3
B
BBug Offline OP
Self-satisified door
OP Offline
Self-satisified door
B
Joined: Feb 2003
Posts: 3
i've been trying to figure out how to ignore just the mp3 scrolling but not anything else that person types. I've tried HALT, HALTDEF and can't seem to figure it out.

I have:
on *:text:*kbps*:#:

and can't figure out what to put afterwards.

#144648 12/03/06 07:52 PM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
I don't know if this is possible, as the on text event requires the information to already be posted to the channel in order to be recognized via the event.
The only way that I can see this being possible is if it was scripted at the server level, therefor catching the text before it was sent to the channel.

#144649 12/03/06 08:54 PM
Joined: Oct 2005
Posts: 1,741
G
Hoopy frood
Offline
Hoopy frood
G
Joined: Oct 2005
Posts: 1,741
Code:
on [color:red]^[/color]*:TEXT:*kbps*:#:haltdef
on ^*:NOTICE:*kbps*:#:haltdef
on ^*:ACTION:*kbps*:#:haltdef

(untested)

That should stop any (channel) text messages from being displayed on your screen if they contain "kbps". The ^ is necessary to tell mIRC that to perform your events before it displays anything to the channel window. Note that those events need to be in their own remotes file or they could interfere with other TEXT/NOTICE/ACTION events.

-genius_at_work

#144650 13/03/06 12:07 AM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
Thanks genius..I keep forgetting about that prefix


Link Copied to Clipboard