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を使用したとき、および彼が言ったことをどのように検出しますか?
たとえば、誰かが「/ mesayshello」(画面に「Namesayshello」のようなものを表示します)と入力した場合、「Welcome!」のような応答をするにはどうすればよいですか?
on *:ACTION:Hello:#:{ describe $chan Welcome! }
「Hello」を任意の名前(ワイルドカードをサポート)に変更し、「#」をこれを機能させるチャネルに変更します(#だけを使用すると、すべてのチャネルで機能します)。
ON ACTIONイベントでワイルドカードを使用する例(注意してください!任意のチャネルのすべての/ meアクションに応答します!):
on *:ACTION:*:#:{ describe $chan Welcome! }