1 Star 3 Fork 0

Hello World/YunzaiJS-example

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
DJ表情插件.js 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
Hello World 提交于 2023-01-04 00:43 . 更改了哼哼啊啊啊啊啊
import plugin from '../../lib/plugins/plugin.js'
import fetch from "node-fetch"
import { segment } from "oicq";
export class example extends plugin {
constructor () {
super({
/** 功能名称 */
name: 'DJ表情插件',
/** 功能描述 */
dsc: '表情制作',
event: 'message',
/** 优先级,数字越小等级越高 */
priority: 5000,
rule: [
{
/** 命令正则匹配 */
reg: '^纳西妲(.*)$',
/** 执行方法 */
fnc: 'olol'
},
{
/** 命令正则匹配 */
reg: '^首富(.*)$',
/** 执行方法 */
fnc: 'shoufu'
}
]
})
}
async olol (e){
if (e.message[1].type == 'at') {let targetQQ = e.at;let url ='http://xiaobapi.top/api/xb/api/naxidabao.php?qq='+targetQQ;
await this.reply(segment.image(url),true)
}}
async shoufu (e){
if (e.message[1].type == 'at') {let targetQQ = e.at;let url ='http://xiaobapi.top/api/xb/api/stickers_certificate_5.php?qq='+targetQQ;
await this.reply(segment.image(url),true)
}
}}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/wan13877501248/yunzai-js-example.git
[email protected]:wan13877501248/yunzai-js-example.git
wan13877501248
yunzai-js-example
YunzaiJS-example
master

搜索帮助