on *:INPUT:#: {
/set %ANSWER $+ $1-
/msg $active %ANSWER
/unset %back.*
/halt
}
所以这个遥控器将我们输入的所有文本变为粗体....但是当这个脚本运行时,我们无法在Chanel中编写命令(在Chanel的输入扇区中)。如何让它运行命令。 /> 有什么建议吗?
答案 0 :(得分:0)
很简单。
on *:input:*: {
if (/* !iswm $1 || $ctrlenter) {
say $+($chr(2),$1-)
haltdef
}
}