melka-devs.js
Version:
Normal şekilde bot yapmak istiyorsanız bu modülü kullanabilirsiniz.
9 lines (7 loc) • 334 B
JavaScript
const ghost = require('ghost-dev-console');
const MesajGönder = (text, channel) => {
if (!text) return ghost.hata('HATA: Bot boş mesaj gönderemez.');
if (!channel) return ghost.hata('HATA: Lütfen bir kanal gir ama sonunda .id olmasın, mesela message.channel');
return channel.send(text);
};
module.exports = MesajGönder;