mIRC Home    About    Download    Register    News    Help

Print Thread
C
cRiTiC
cRiTiC
C
I'm trying to make a script that will quit and close a status window if a certain condition applies, I can't seem to find a command that will do this. If anyone has any suggestions, please respond

Joined: Mar 2004
Posts: 175
R
Vogon poet
Offline
Vogon poet
R
Joined: Mar 2004
Posts: 175
Code:
alias swin {
  if ($status == connected) { disconnect }
  window -c "Status Window"
}

Note that this will only work if you have more than one status window open because mIRC allows a minimum of one.

C
cRiTiC
cRiTiC
C
thanks


Link Copied to Clipboard