连接失败时 mIRC 关闭 window
mIRC close window when fails to connect
我经常使用 server -m
连接到多个服务器,它会为每个服务器打开新的 window,我想知道是否可以在失败时自动关闭 window连接。可能使用事件 CONNECTFAIL
。有什么想法吗?
一个简单的 close
命令就可以解决问题
on *:connectfail: {
; -it: Inactive Status window (not connected nor connecting)
close -it
}
我经常使用 server -m
连接到多个服务器,它会为每个服务器打开新的 window,我想知道是否可以在失败时自动关闭 window连接。可能使用事件 CONNECTFAIL
。有什么想法吗?
一个简单的 close
命令就可以解决问题
on *:connectfail: {
; -it: Inactive Status window (not connected nor connecting)
close -it
}