mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Mar 2009
Posts: 4
V
Vonnick Offline OP
Self-satisified door
OP Offline
Self-satisified door
V
Joined: Mar 2009
Posts: 4
Is it possible to set mIRC to change my nick to a predesignated alternate when I mark myself as away? This is about the only thing that has been bugging me with mIRC, as there's no obvious visual indication as to who is away.


This is my signature. Sexy, huh?
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
Yes. The following script will do just that.
Code:
alias away {
  if $away {
    .nick $mnick
    !away
  }
  else {
    .nick $anick
    !away $1-
  }
}

Usage: /away <reason> or /away (when coming back)

In case you don't know, this is designed to go into the Remotes tab of the Script Editor, which can be accessed by pressing Alt+R

Joined: Mar 2009
Posts: 4
V
Vonnick Offline OP
Self-satisified door
OP Offline
Self-satisified door
V
Joined: Mar 2009
Posts: 4
Hey, thanks. I didn't consider a script.


This is my signature. Sexy, huh?

Link Copied to Clipboard