suwuji 发表于 2022-8-24 19:52:02

触发器、定时器、别名命令行开关alias(mushclient)

本帖最后由 suwuji 于 2022-8-24 08:51 PM 编辑

最近有很多新手来啊,分享一个快速开关触发器、命令行、别名的alias
<aliases>
<alias
   match="^(\+|\-) ([^ ]*) (.*)"
   enabled="y"
   group="基本指令"
   regexp="y"
   send_to="12"
   sequence="100"
>
<send>local kg = false

if "%1"=="+" then
	kg=true
else
	kg=false
end

if "%2"=="t" then
	EnableTrigger("%3",kg)
end

if "%2"=="ti" then
	EnableTimer("%3",kg)
end

if "%2"=="a" then
	EnableAlias("%3",kg)
end

if "%2"=="g" then
	EnableGroup("%3",kg)
end

if "%2"=="tg" then
	EnableTriggerGroup("%3",kg)
end

if "%2"=="tig" then
	EnableTimerGroup("%3",kg)
end

if "%2"=="ag" then
	EnableAliasGroup("%3",kg)
end
</send>
</alias>
</aliases>









suwuji 发表于 2022-8-24 20:02:11

论坛贴代码有bug啊,还得自己替换&这个符号

suwuji 发表于 2022-8-24 21:14:44

用法: +/- g 组名(触发器、别名、定时器三组者同时,最常用)
+/- t 触发器名
+/- a 别名名
+/- ti 定时器名
+/- tg 触发器组名
+/- ag 别名组名
+/- tig 定时器组名

phagspa 发表于 2023-1-27 15:12:37

太有用了,感谢分享!
页: [1]
查看完整版本: 触发器、定时器、别名命令行开关alias(mushclient)