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.
创建 mIRC 脚本时,我如何检测某人何时使用 /me 以及他说了什么?
例如,如果有人键入“/me say hello”(屏幕上显示类似于“Name say hello”的内容),我将如何回应“Welcome!”之类的内容?
on *:ACTION:Hello:#:{ describe $chan Welcome! }
将“Hello”更改为您想要的任何内容(支持通配符),将“#”更改为您希望它在其上工作的频道(仅使用 # 将使其在每个频道上工作)。
在 ON ACTION 事件上使用通配符的示例(注意!会回复任何频道上的每个 /me 动作!):
on *:ACTION:*:#:{ describe $chan Welcome! }