| |
Don't you hate it , when while chatting, either
privately or in a channel, a window opens up with
somebody saying "Hi" or "m/f"
?
Fortunately with mIRC you can get rid of this. You can
configure mIRC to inform you, in your active window
- The nick of the person who is querying or
messaging you.
- The content of the message.
- To accept or not the query\message.
First in your General Options , in the IRC
Switches tab, tick Queries
in active window.
Then copy this in your Remote .
on 1:TEXT:*:?:{
if ($nick isin $active) { goto halt }
else {
splay c:\mirc\events\hello.wav | /set %mnick $nick
echo $active 14 To Close0. 14message 4 Hit F3
echo $active 14 To Accept message 4 Hit F2
}
:halt
}
Note:- If you copy it as it is with copy and
paste. color codes will be included as well. Also change c:\mirc\events\hello.wav
with the path of any wav shound you like.
The Squares that you see are color codes.
Also put this in your Aliases
/f2 /query %mnick | /unset %mnick
/f3 /notice %mnick Sorry can't chat now, cya around
%mnick :) | /ignore -pntiu60 %mnick 3 | /closemsg %mnick
| /unset %mnick
Note:- The /f3 alias should be on one line,
also don't forget to leave space before and after | .
Let's analyze it
First let's have a look at the one in Remote\Events
.
Although
it might look complicated, it's very simple.
If you still didn't understand how it works, no
problem. Just copy the Remote and Aliases
part and next time you're on IRC query
yourself and see what will happen :)
|
|