代码拉取完成,页面将自动刷新
import plugin from '../../lib/plugins/plugin.js';
import fetch from "node-fetch";
import { segment } from 'oicq';
import fs from 'fs';
//作者:风 qq:459521475
//可以添加其他图片,只需要添加在Miao-Yunzai/resources/wind-img文件夹下就可以
//如果没有该文件夹就重新新建一个,然后把图片放进去即可
//指令正则也可自行修改
export class example extends plugin {
constructor() {
super({
/** 功能名称 */
name: '随机图片',
/** 功能描述 */
dsc: '发送随机的图片',
/** https://oicqjs.github.io/oicq/#events */
event: 'message',
/** 优先级,数字越小等级越高 */
priority: 1,
rule: [
{
reg: "^#?随机图片$",
fnc: 'randomimg'
}
]
});
}
async randomimg(e){
const path = process.cwd() + '/resources/wind-img/';
const files = fs.readdirSync(path);
const imageFiles = files.filter(file => file.endsWith('.jpg') || file.endsWith('.png'));
const randomIndex = Math.floor(Math.random() * imageFiles.length);
const imagePath = `${path}/${imageFiles[randomIndex]}`;
const img = fs.readFileSync(imagePath);
await this.reply(segment.image(img));
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。