melka-devs.js
Version:
Normal şekilde bot yapmak istiyorsanız bu modülü kullanabilirsiniz.
9 lines (7 loc) • 354 B
JavaScript
const ghost = require('ghost-dev-console');
const MesajSil = (id, channel) => {
if (!id) return ghost.hata('HATA: Bot boş mesaj silemez.');
if (!channel) return ghost.hata('HATA: Lütfen bir kanal gir ama sonunda .id olmasın, mesela message.channel');
return channel.messages.cache.get(id).delete({ timeout: 10 });
};
module.exports = MesajSil;