在mush触发器里可以像462触发器里输入等待命令么
在mush里能想462里面一样输入等待命令么 不是脚本是指触发器里像462的 #wa 不行 应该可以的,你举个例子 比如说这样 我怎么能在触发器里实现时间等待?<aliases>
<alias
match="begin_learn"
enabled="y"
echo_alias="y"
regexp="n"
send_to="12"
sequence="100"
>
<send>
do local t = coroutine.create(function (t)
repeat
Send("learn master force 1")
line, wildcards = waitforregexp (t,
"^(你听了(.+?)的指导,似乎有些心得。|然而你今天太累了,无法再进行任何学习了。)$")
until line == "然而你今天太累了,无法再进行任何学习了。"
Send("sleep")
end)
assert (coroutine.resume (t, t)) end
</send>
</alias>
</aliases> 研究一下怎么使用wait.lua
(可以去gammon的网站上搜一下)
页:
[1]