Advertisement
Guest User

Untitled

a guest
May 29th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. var Discord = require("discord.js");
  2.  
  3. var mybot = new Discord.Client();
  4.  
  5. var commands = {};
  6. commands["!test"] = "Great succes!";
  7. commands["!ping"] = "Nu moet ik zeker pong zeggen?";
  8. commands["!pong"] = "Nee zo werkt dat niet";
  9. commands["!Hallo"] = "Gegroet heer!";
  10. commands["kanker bot"] = "Emotionele_status_Depressie = 1";
  11. commands["!help"] = "LOL nee XDDDD ROFL";
  12. commands["!broodje warm vlees"] = "https://i.imgflip.com/14tnfn.jpg";
  13. commands["!time"] = "http://i.imgur.com/AMVeTMQ.png";
  14. commands["!duel"] = "http://i.imgur.com/7VaA4Bh.jpg";
  15. commands["!poep"] = function(){ return Object.keys(commands); }
  16.  
  17. mybot.on("message", function(message){
  18. if(commands[message] != null)
  19. mybot.sendMessage(message, "" + commands[message]);
  20. });
  21.  
  22. mybot.login("stijntromp@upcmail.nl", "appelsap123");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement