代码拉取完成,页面将自动刷新
import plugin from '../../lib/plugins/plugin.js';
import { segment } from 'oicq';
import path from 'path';
const currentPath = process.cwd();
class ViewOwnerPlugin extends plugin {
constructor() {
super({
name: '查看主人和赞助',
dsc: '响应查看主人和赞助指令,提供机器人主人的联系方式和赞助信息。',
event: 'message',
priority: -100,
rule: [
{
reg: '^#问题反馈$',
fnc: 'viewOwner'
},
{
reg: '^#赞助$',
fnc: 'sponsor'
}
]
});
this.imgPaths = {
viewOwner: path.join(currentPath, '/resources/OvertimeBunny/1.jpg'),
sponsor: path.join(currentPath, '/resources/OvertimeBunny/2.jpg')
};
console.log('ViewOwnerPlugin loaded'); // 确认插件加载
}
async viewOwner(e) {
await e.reply([
segment.image(`file://${this.imgPaths.viewOwner}`),
'有问题进帖子进行反馈。'
]);
}
async sponsor(e) {
await e.reply([
segment.image(`file://${this.imgPaths.sponsor}`),
'感谢您的赞助支持!'
]);
}
}
export default ViewOwnerPlugin;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。