mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Jan 2004
Posts: 79
C
cmad Offline OP
Babel fish
OP Offline
Babel fish
C
Joined: Jan 2004
Posts: 79
I succeeded (not so difficult anyway) in intercepting msgs from other ppl with:

on ^1:TEXT:*:#:{
; .....
}

and it works great. I was wondering, is there a way to do that to my own text? I tried creating an alias for /msg (which would overwrite the default one), but it didn't work.

So simply put: I intercept text msgs with on ^1:TEXT, and format them the way I like, is there a way to do this for my own msgs?

TIA,
cmad


My ally is the compiler, and a powerful ally it is!
Joined: Dec 2002
Posts: 1,922
O
Hoopy frood
Offline
Hoopy frood
O
Joined: Dec 2002
Posts: 1,922
On *:input:*:{
  • if /* !iswm $1 || $ctrlenter {
    echo -ati $+(<,$me,>) $1-
    .msg $active $1-
    halt
    }
}

Joined: Jan 2004
Posts: 79
C
cmad Offline OP
Babel fish
OP Offline
Babel fish
C
Joined: Jan 2004
Posts: 79
thanks laugh


My ally is the compiler, and a powerful ally it is!
Joined: Jan 2004
Posts: 79
C
cmad Offline OP
Babel fish
OP Offline
Babel fish
C
Joined: Jan 2004
Posts: 79
Any idea how I can make the channel window flash on an incoming msg? Now cuz of the "halt", it won't flash.

TIA,
cmad


My ally is the compiler, and a powerful ally it is!
Joined: Apr 2003
Posts: 701
K
Hoopy frood
Offline
Hoopy frood
K
Joined: Apr 2003
Posts: 701
echo -fati $+(<,$me,>) $1-

Although I find it somewhat strange you want to have your channel flash on your own messages?

Try /help /echo and check all switches, you might even want to put some more to have it completely act as a standard mIRC message.


Link Copied to Clipboard