用于运行命令的Makethis脚本

时间:2013-03-14 10:54:47

标签: scripting mirc

http://prntscr.com/w9fb4

    on *:INPUT:#: {
  /set %ANSWER  $+ $1-
  /msg $active %ANSWER
  /unset %back.*
  /halt
}

所以这个遥控器将我们输入的所有文本变为粗体....但是当这个脚本运行时,我们无法在Chanel中编写命令(在Chanel的输入扇区中)。如何让它运行命令。 /> 有什么建议吗?

1 个答案:

答案 0 :(得分:0)

很简单。

on *:input:*: {
  if (/* !iswm $1 || $ctrlenter) {
    say $+($chr(2),$1-)
    haltdef
  }
}
相关问题