Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- client.on('message', ayo=> {
- const args = ayo.content.slice(prefix.length).trim().split(/ +/);
- const command = args.shift().toLowerCase();
- if(command == 'set-line')//هنا تكدر تعدله أمر سيت
- {
- if(ayo.channel.type === 'dm') return;
- if(!ayo.member.hasPermission('MANAGE_CHANNELS')) return;
- if(!args[0]) return ayo.channel.send('عليك وضع رابط صورة')
- ayo.channel.send("تم")
- db.set("AYO", args[0])
- }
- });
- client.on("message", ayo => {
- if(ayo.content===prefix +"line")//هنا أمر الي يحط لك خط
- {
- ayo.channel.send(db.get("AYO"))
- ayo.delete()
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment