|
本帖最后由 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>
复制代码
|
|