UNPKG

melka-devs.js

Version:

Normal şekilde bot yapmak istiyorsanız bu modülü kullanabilirsiniz.

10 lines (8 loc) 433 B
const ghost = require('ghost-dev-console'); const MesajDüzenle = (text, id, channel) => { if (!text) return ghost.hata('HATA: Bot boş mesaj düzenleyemez.'); if (!id) return ghost.hata('HATA: Bot boş mesaj idsi bulamaz.'); 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).edit(text); }; module.exports = MesajDüzenle;