mIRC Home    About    Download    Register    News    Help

Print Thread
V
Vonnick
Vonnick
V
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.

Joined: Aug 2004
Posts: 7,168
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,168
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

V
Vonnick
Vonnick
V
Hey, thanks. I didn't consider a script.


Link Copied to Clipboard