Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在写脚本remote.ini脚本看起来像
remote.ini
on 1:start:{ server some.irc.server server -m another.irc.server }
该脚本运行良好,当我打开 mIRC 时,它会自动连接到上面的 2 个服务器
现在,我想连接到需要密码的 irc 服务器,比如说abcdef
abcdef
如何编写脚本remote.ini以连接到该服务器?
mIRC 中的语法/server是:
/server
/server [-emnsarpfoc] <server/groupname> [port] [password] [-i nick anick email name] [-jn #channel pass]
所以,试试:
on 1:start:{ server some.irc.server server -m another.irc.server server -m third.irc.server 6667 abcdef }