Advertisement
Guest User

Untitled

a guest
Jun 19th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. bot.on("message", async message => {
  2. let prefix = botconfig.prefix;
  3.  
  4. if (message.author.bot) return;
  5. if (!message.content.startsWith(prefix)) return;
  6. if (message.content.startsWith(prefix + "123")) {
  7.  
  8. message.channel.send(exports.Status = {
  9. READY: 0,
  10. CONNECTING: 1,
  11. RECONNECTING: 2,
  12. IDLE: 3,
  13. NEARLY: 4,
  14. DISCONNECTED: 5,
  15.  
  16.  
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement