gpt4 book ai didi

irc - mIRC Bot 模拟击键

转载 作者:行者123 更新时间:2023-12-02 03:38:01 25 4
gpt4 key购买 nike

我想对我的 mIRC 机器人进行编程,以便每次有人在聊天中输入“W”时,机器人都会模拟我键盘上的 W 键。

我试过:

on *:text:W:#:sendkeys {W}
alias sendkeys var %a = $ticks
.comopen %a WScript.Shell | if !$comerr {
.comclose %a $com(%a,SendKeys,3,bstr,$1-)
}

这似乎不起作用。有什么建议吗?

最佳答案

代码很好,执行该代码的 block 不正确。由于缺少括号,您的别名将只执行 var 命令,然后执行。

摘自 mIRC 帮助文件:

The { } brackets: You can create multi-line scripts by using the { } brackets. This allows you to create an alias which performs several commands.

alias sendkeys {
var %a = $ticks
.comopen %a WScript.Shell
if !$comerr {
.comclose %a $com(%a,SendKeys,3,bstr,$1-)
}
}

关于irc - mIRC Bot 模拟击键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22065531/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com